Editra CDN

Versioned v1.0.0 assets

The official CDN path is reserved for immutable Editra scripts and styles. Self-host the included assets until the endpoint is active.

<link rel="stylesheet"
  href="https://cdn.editra.in/v1.0.0/themes/word.css">
<script src="https://cdn.editra.in/v1.0.0/dist/editra.js"><\/script>
Open CDN asset
Source

GitHub repository

Review the implementation, clone the source, report issues, and contribute under MIT.

git clone https://github.com/editra-js/Editra.git
View repository
Package manager

Install Editra v1.0.0

Install editra-js from npm or use the official Editra CDN for browser delivery.

npm install editra-js@1.0.0

https://cdn.editra.in/v1.0.0/dist/editra.js
https://cdn.editra.in/v1.0.0/themes/word.css
Self hosted

Pin and serve locally

Download the tagged repository and serve the distribution, core, plugins, UI, and themes from the same origin.

const editor = await Editra.init({
  selector: "#editra-editor",
  baseUrl: "/vendor/editra/",
  theme: "Word",
  plugins: ["formatting", "table", "image"]
});
Installation guide