• Stars
    star
    1,539
  • Rank 29,348 (Top 0.6 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 7 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Jodit - Best WYSIWYG Editor for You

Jodit WYSIWYG editor

Jodit Editor 3

An excellent WYSIWYG editor written in pure TypeScript without the use of additional libraries. Its file editor and image editor.

Build Status npm version npm

Get Started

How use

Download the latest release or

INSTALL VIA NPM

npm install jodit

You will get:

  • inside /esm: ESM version of the editor (compatible with e.g. webpack)
  • inside /(es5|es2015|es2018|es2021)/*.js: UMD bundled, not minified
  • inside /(es5|es2015|es2018|es2021)/*.min.js: UMD bundled, and minified
  • types/index.d.ts: this specifies the API of the editor (this is what is actually versioned, everything else is considered private and might break with any release).

Include just two files

ES5 Version

<link type="text/css" rel="stylesheet" href="es2015/jodit.min.css" />
<script type="text/javascript" src="es2015/jodit.min.js"></script>

es2021 Version (if your users use only modern browsers)

<link type="text/css" rel="stylesheet" href="es2021/jodit.min.css" />
<script type="text/javascript" src="es2021/jodit.min.js"></script>

esm modules

<script type="importmap">
  {
    "imports": {
      "autobind-decorator": "https://unpkg.com/[email protected]/lib/esm/index.js"
    }
  }
</script>
<link rel="stylesheet" href="./node_modules/jodit/es2021/jodit.min.css"/>
<script type="module">
  import {Jodit} from "./node_modules/jodit/esm/index.js"
  Jodit.make('#editor', {
    width: 600,
    height: 400,
  });
</script>

ESM automatically connects only the basic set of plugins and only English. You can connect the necessary plugins and languages yourself:

<script type="importmap">
  {
    "imports": {
      "autobind-decorator": "https://unpkg.com/[email protected]/lib/esm/index.js"
    }
  }
</script>
<link rel="stylesheet" href="./node_modules/jodit/es2021/jodit.min.css"/>
<script type="module">
  import {Jodit} from "./node_modules/jodit/esm/index.js"
  import "./node_modules/jodit/esm/plugins/add-new-line/add-new-line.js"
  import "./node_modules/jodit/esm/plugins/fullsize/fullsize.js"
  import de from "./node_modules/jodit/esm/langs/de.js"

  Jodit.langs.de = de;

  Jodit.make('#editor', {
    width: 600,
    height: 400,
    language: 'de'
  });
</script>

Use a CDN

cdnjs

<link
	rel="stylesheet"
	href="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.24/es2021/jodit.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.0.0-beta.24/es2021/jodit.min.js"></script>

unpkg

<link
	rel="stylesheet"
	href="https://unpkg.com/[email protected]/es2021/jodit.min.css"
/>
<script src="https://unpkg.com/[email protected]/es2021/jodit.min.js"></script>

USAGE

And some <textarea> element

<textarea id="editor" name="editor"></textarea>

After this, you can init Jodit plugin

const editor = Jodit.make('#editor');
editor.value = '<p>start</p>';

with jQuery

$('textarea').each(function () {
	const editor = Jodit.make(this);
	editor.value = '<p>start</p>';
});

For contributors:

git clone https://github.com/xdan/jodit.git
cd jodit
npm ci

Run webpack Hot Reload server:

npm start

Demo will be available here

http://localhost:2000/

Build min files:

make build

Build without some plugins:

make build es=es2021 uglify=true excludePlugins="about,source,bold,image,xpath,stat,class-span,color,clean-html,file,focus,enter,backspace,media,preview,pint,redo-undo,resize-cells,search,spellcheck,table"

Build without some languages:

make build es=es2021 uglify=true excludeLanguages="ru,ar,cs_cz,de,es,fa,fr,he,hu,id,it,ja,ko,nl,pl,pt_br,ru,tr,zh_cn,zh_tw"

Run tests:

make test browsers ChromeHeadless,IE,Firefox

or

make test

or

npm test

For checking tests in browser, open URL:

http://localhost:2000/test/test.html

For testing FileBrowser and Uploader modules, need install PHP Connector

composer create-project --no-dev jodit/connector

Run test PHP server

php -S localhost:8181 -t ./

and set options for Jodit:

const editor = Jodit.make('#editor', {
	uploader: {
		url: 'http://localhost:8181/index-test.php?action=fileUpload'
	},
	filebrowser: {
		ajax: {
			url: 'http://localhost:8181/index-test.php'
		}
	}
});

Create plugin

Jodit.plugins.yourplugin = function (editor) {
	editor.events.on('afterInit', function () {
		editor.s.insertHTMl('Text');
	});
};

Add custom button

const editor = Jodit.make('.someselector', {
	extraButtons: [
		{
			name: 'insertDate',
			iconURL: 'http://xdsoft.net/jodit/logo.png',
			exec: function (editor) {
				editor.s.insertHTML(new Date().toDateString());
			}
		}
	]
});

or

const editor = Jodit.make('.someselector', {
	buttons: ['bold', 'insertDate'],
	controls: {
		insertDate: {
			name: 'insertDate',
			iconURL: 'http://xdsoft.net/jodit/logo.png',
			exec: function (editor) {
				editor.s.insertHTML(new Date().toDateString());
			}
		}
	}
});

button with plugin

Jodit.plugins.add('insertText', function (editor) {
	editor.events.on('someEvent', function (text) {
		editor.s.insertHTMl('Hello ' + text);
	});
});

// or

Jodit.plugins.add('textLength', {
	init(editor) {
		const div = editor.create.div('jodit_div');
		editor.container.appendChild(div);
		editor.events.on('change.textLength', () => {
			div.innerText = editor.value.length;
		});
	},
	destruct(editor) {
		editor.events.off('change.textLength');
	}
});

// or use class

Jodit.plugins.add(
	'textLength',
	class textLength {
		init(editor) {
			const div = editor.create.div('jodit_div');
			editor.container.appendChild(div);
			editor.events.on('change.textLength', () => {
				div.innerText = editor.value.length;
			});
		}
		destruct(editor) {
			editor.events.off('change.textLength');
		}
	}
);

const editor = Jodit.make('.someselector', {
	buttons: ['bold', 'insertText'],
	controls: {
		insertText: {
			iconURL: 'http://xdsoft.net/jodit/logo.png',
			exec: function (editor) {
				editor.events.fire('someEvent', 'world!!!');
			}
		}
	}
});

Browser Support

  • Internet Explorer 11
  • Latest Chrome
  • Latest Firefox
  • Latest Safari
  • Microsoft Edge

Contributing

This project is maintained by a community of developers. Contributions are welcome and appreciated. You can find Jodit on GitHub; feel free to start an issue or create a pull requests: https://github.com/xdan/jodit

License

MIT

More Repositories

1

datetimepicker

jQuery Plugin Date and Time Picker
JavaScript
3,496
star
2

autocomplete

jQuery autocomplete plugin like Google autocomplete
JavaScript
257
star
3

flipcountdown

Clock in retro style
JavaScript
166
star
4

jodit2

rich html Editor and FileBrowser
JavaScript
25
star
5

jodit-connectors

Official Jodit connectors
PHP
23
star
6

range2dslider

Simple and easily customizable plugin for quickly creating sliders
JavaScript
19
star
7

miniMySQLAdmin

A simplified version of phpMyAdmin. All you need is to download a single file on the server.
PHP
15
star
8

xddialogs

Система диалогов на php как в контакте
PHP
15
star
9

periodpicker

Empty repository for paid periodpicker version
14
star
10

dialog

Simple dialog system
JavaScript
11
star
11

ideal

Ideal framework on php
PHP
8
star
12

jodit-connector-application

PHP
5
star
13

selectspinner

Element select combine with spinner like jquery UI
JavaScript
4
star
14

ts-private-uglifier

JavaScript
3
star
15

xdpuls

Система обратной связи для сайта xdPuls - буть вкурсе
PHP
2
star
16

emoji-1

Plugin for emoji dialog
JavaScript
2
star
17

class.db.php

Удобная надстройка над нативным mysql_query на php
PHP
2
star
18

k9

Parser
PHP
1
star
19

lightboxkit

Analogue UIKit LightBox https://getuikit.com/docs/lightbox.html
JavaScript
1
star
20

joomla-safe-update

Joomla Safe Update component
PHP
1
star
21

uno

class for simple work with joomla database
PHP
1
star
22

mod_xdsoft_ymaps

Joomla Module Yandex Maps Constructor
JavaScript
1
star
23

gulp-boilerplate

Gulp kit: sprite, less, uglify and ftp deployer
HTML
1
star
24

xdGallery

Плагин галерея картинок на jQuery
1
star
25

finder.php

Find on server
PHP
1
star
26

ck_onselect

Add to ckeditor new event select
JavaScript
1
star
27

paint-api

API for building Paint Application
TypeScript
1
star
28

docium

Documentation generator
JavaScript
1
star