Lite Editor

About

Lite Editor is a free to use and customizable WYSIWYG Editor. A vanillaJS plugin you can easily use like below

const editor = new LiteEditor('.js-editor');

Installation

via cdn

<script src="https://unpkg.com/lite-editor@1.6.39/js/lite-editor.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/lite-editor@1.6.39/css/lite-editor.css">

via npm

npm install lite-editor --save

or yarn

yarn add lite-editor

After installing it via npm, You can import it easily with webpack or browserify

import LiteEditor from 'lite-editor';

const editor = new LiteEditor('.js-editor');
Getting Started
API