Skip to main content

Self-Hosted Installation

Host Editor42 on your own server for full control over updates and availability.

Download

Editor42 ships pre-built, so there is nothing to compile. The archive holds a single editor42/ folder — unpack it into your project's public directory.

Download Editor42

Inside it, editor42.min.js sits next to the skins/, icons/, themes/, models/, plugins/ and langs/ folders it loads while running. The editor resolves those relative to its own script, so keep them all side by side.

Basic Setup

Add Editor42 to your HTML page:

<script src="/path/to/editor42/editor42.min.js"></script>

<textarea id="my-editor"></textarea>

<script>
editor42.init({
selector: '#my-editor'
});
</script>

Configuration

Editor42 uses the same configuration options as TinyMCE. See the Configuration Options for the full list of available settings.