0.0.11 • Published 2 years ago

@typio/typio v0.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

typio

Lightweight Aesthetic WYSIWYG Rich Text Editor

Install

$ npm i @typio/typio

Basic Usage

Once you've installed the package, import and use the component:

Svelte

index.svelte:

<script>
    import typio as Editor from '@typio/typio'
</script>

<Editor />

JS

index.js:

import typio from '@typio/typio'

const typio = new typio({
    // initialize editor on some HTMLElement
    target: document.getElementById('typio-wrapper')
})