MCPcopy
hub / github.com/xdan/jodit

github.com/xdan/jodit @4.12.33 sqlite

repository ↗ · DeepWiki ↗ · release 4.12.33 ↗
2,901 symbols 10,506 edges 824 files 519 documented · 18%
README

Jodit WYSIWYG editor

Jodit Editor

Jodit Editor is an excellent WYSIWYG editor written in pure TypeScript without the use of additional libraries. It includes a file editor and image editor.

Build Status npm version npm npm

Get Started

How to Use

Download the latest release or via npm:

npm install jodit

You will get the following files:

  • Inside /esm: ESM version of the editor (compatible with tools like webpack)
  • Inside /es5, /es2015, /es2018, /es2021: UMD bundled files (not minified)
  • Inside /es5, /es2015, /es2018, /es2021 with .min.js extension: UMD bundled and minified files
  • types/index.d.ts: This file specifies the API of the editor. It is versioned, while everything else is considered private and may change with each release.

Include Jodit in Your Project

Include the following two files:

ES5 Version:

<link type="text/css" rel="stylesheet" href="https://github.com/xdan/jodit/raw/4.12.33/es2015/jodit.min.css" />
<script type="text/javascript" src="https://github.com/xdan/jodit/raw/4.12.33/es2015/jodit.min.js"></script>

ES2021 Version (for modern browsers only):

<link type="text/css" rel="stylesheet" href="https://github.com/xdan/jodit/raw/4.12.33/es2021/jodit.min.css" />
<script type="text/javascript" src="https://github.com/xdan/jodit/raw/4.12.33/es2021/jodit.min.js"></script>

ESM Modules:

<link rel="stylesheet" href="https://github.com/xdan/jodit/raw/4.12.33/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>

The ESM modules automatically include only the basic set of plugins and the English language. You can manually include additional plugins and languages as needed.

<link rel="stylesheet" href="https://github.com/xdan/jodit/raw/4.12.33/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';

  // Or import all plugins
  import './node_modules/jodit/esm/plugins/all.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.7.6/es2021/jodit.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/4.7.6/es2021/jodit.min.js"></script>

unpkg

<link
  rel="stylesheet"
  href="https://unpkg.com/jodit@4.7.6/es2021/jodit.min.css"
/>
<script src="https://unpkg.com/jodit@4.7.6/es2021/jodit.min.js"></script>

Usage

Add a textarea element to your HTML:

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

Initialize Jodit on the textarea:

const editor = Jodit.make('#editor');
editor.value = '

start

';

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: 'https://xdsoft.net/jodit/logo.png',
      exec: function (editor) {
        editor.s.insertHTML(new Date().toDateString());
        editor.synchronizeValues(); // For history saving
      }
    }
  ]
});

or

const editor = Jodit.make('.someselector', {
  buttons: ['bold', 'insertDate'],
  controls: {
    insertDate: {
      name: 'insertDate',
      iconURL: 'https://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: 'https://xdsoft.net/jodit/logo.png',
      exec: function (editor) {
        editor.events.fire('someEvent', 'world!!!');
      }
    }
  }
});

FileBrowser and Uploader

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'
    }
  }
});

Browser Support

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

License

MIT

Extension points exported contracts — how you extend this code

IFocusable (Interface)
(no doc) [6 implementers]
src/types/form.d.ts
IEventEmitter (Interface)
(no doc) [2 implementers]
src/core/plugin/interface.ts
IEventEmitter (Interface)
(no doc) [1 implementers]
src/plugins/backspace/interface.ts
HTMLElement (Interface)
(no doc)
index.d.ts
Jodit (Interface)
(no doc)
src/jodit.ts
Config (Interface)
(no doc)
src/modules/image-editor/config.ts
IInitable (Interface)
(no doc) [7 implementers]
src/types/types.d.ts
IEventEmitter (Interface)
(no doc) [1 implementers]
src/core/selection/interface.ts

Core symbols most depended-on inside this repo

getJodit
called by 1047
test/bootstrap.js
simulateEvent
called by 991
test/bootstrap.js
fire
called by 368
src/types/events.d.ts
sortAttributes
called by 303
test/bootstrap.js
clickButton
called by 290
test/bootstrap.js
getOpenedPopup
called by 274
test/bootstrap.js
setCursorToChar
called by 271
test/bootstrap.js
on
called by 256
src/plugins/paste/interface.ts

Shape

Method 1,519
Function 916
Class 273
Interface 192
Enum 1

Languages

TypeScript100%

Modules by API surface

test/chai/chai.min.js140 symbols
src/jodit.ts77 symbols
src/core/dom/dom.ts66 symbols
src/core/selection/selection.ts58 symbols
test/bootstrap.js56 symbols
src/modules/table/table.ts42 symbols
src/types/select.d.ts34 symbols
src/types/file-browser.d.ts34 symbols
src/types/ui.d.ts33 symbols
src/types/types.d.ts33 symbols
src/modules/file-browser/data-provider.ts31 symbols
src/core/view/view.ts31 symbols

Dependencies from manifests, versioned

@eslint/compat2.0.2 · 1×
@eslint/eslintrc3.3.4 · 1×
@eslint/js9.39.2 · 1×
@playwright/test1.60.0 · 1×
@statoscope/cli5.29.0 · 1×
@statoscope/stats-validator-plugin-webpack5.29.0 · 1×
@statoscope/webpack-plugin5.29.0 · 1×
@swc/core1.15.18 · 1×
@swc/helpers0.5.19 · 1×
@tony.ganchev/eslint-plugin-header3.2.4 · 1×
@types/ace0.0.52 · 1×
@types/fs-extra11.0.4 · 1×

For agents

$ claude mcp add jodit \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact