jodit-svelte
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Jodit editor component for Svelte 3

This component is a thin wrapper around jodit editor. Below are the set of instructions to create svelte project and install component.

How to install package

$ npm i jodit-svelte

Getting started

Create a new svelte project and install dependencies

npx degit sveltejs/template my-app
cd my-app
npm i

Install jodit-svelte package

npm i jodit-svelte

Update App.svelte in your project with the following

<script>
  // Jodit wrapper component
  import JoditEditor from "jodit-svelte";
  // Use Jodit Community Version
  import "jodit/build/jodit.es2018.en.min.css"
  import {Jodit} from "jodit";

  // For Jodit PRO Version
  // import "jodit-pro/build/jodit.fat.css"
  // import {Jodit} from "jodit-pro";


  // Editor constructor
  let editorConstructor = Jodit;
  // Reference to initialised editor instance
  let editorInstance = null;
  // Setting up any initial data for the editor
  let editorValue = "Hello World";

  // If needed, custom editor config can be passed through to the component
  // Uncomment the custom editor config if you need to customise the editor.
  let editorConfig = {
    buttons: [
    'bold', 'italic'
    ]
  };

  function onReady({ detail: editor }) {
    editorInstance = editor;
    console.log(editor.isReady);
  }

  function onChange({detail: {data}}) {
    editorValue = data;
    console.log(data);
  }
</script>

<div>
  <JoditEditor
    bind:editorConstructor={editorConstructor}
    on:ready={onReady}
    on:input={onChange}
    bind:config={editorConfig}
    bind:value={editorValue} />
</div>

Run your project

npm run dev

Package Sidebar

Install

npm i jodit-svelte

Weekly Downloads

5

Version

1.0.3

License

MIT

Unpacked Size

132 kB

Total Files

9

Last publish

Collaborators

  • xdan