@richkitjs/core
v0.1.0
Published
Headless rich text editor core (ProseMirror-based)
Downloads
168
Maintainers
Readme
@richkitjs/core
Headless, framework-agnostic rich text editor core built on ProseMirror. No UI included — bring your own toolbar, or use the framework bindings.
Install
npm install @richkitjs/core @richkitjs/starter-kitUsage
import { Editor } from '@richkitjs/core'
import { StarterKit } from '@richkitjs/starter-kit'
const editor = new Editor({
extensions: [...StarterKit],
content: '<p>Hello world</p>',
})
document.querySelector('#app').appendChild(editor.view.dom)Framework bindings
- React: @richkitjs/react
- Vue 3: @richkitjs/vue
Docs
See the repository for full documentation.
