Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Slate | 27,151 | 3,499 | 923 | 9 hours ago | 686 | August 23, 2022 | 598 | mit | TypeScript | |
A completely customizable framework for building rich text editors. (Currently in beta.) | ||||||||||
Tiptap | 19,235 | 136 | 2 days ago | 198 | September 20, 2022 | 240 | mit | TypeScript | ||
The headless editor framework for web artisans. | ||||||||||
Awesome Lowcode | 11,721 | 4 days ago | 4 | cc0-1.0 | ||||||
国内低代码平台从业者交流 | ||||||||||
Oni | 11,477 | 1 | 3 years ago | 6 | April 02, 2017 | 518 | mit | TypeScript | ||
Oni: Modern Modal Editing - powered by Neovim | ||||||||||
React Page | 9,186 | 18 | 22 days ago | 304 | September 21, 2022 | 8 | mit | TypeScript | ||
Next-gen, highly customizable content editor for the browser - based on React and written in TypeScript. WYSIWYG on steroids. | ||||||||||
Tinacms | 8,903 | 5 | 61 | 3 hours ago | 105 | September 21, 2022 | 82 | other | TypeScript | |
The Markdown CMS | ||||||||||
H5 Dooring | 7,298 | 3 months ago | 29 | gpl-3.0 | JavaScript | |||||
H5 Page Maker, H5 Editor, LowCode. Make H5 as easy as building blocks. | 让H5制作像搭积木一样简单, 轻松搭建H5页面, H5网站, PC端网站,LowCode平台. | ||||||||||
Vditor | 6,354 | 11 | 17 | 2 days ago | 310 | August 04, 2022 | 80 | mit | TypeScript | |
♏ 一款浏览器端的 Markdown 编辑器,支持所见即所得(富文本)、即时渲染(类似 Typora)和分屏预览模式。An In-browser Markdown editor, support WYSIWYG (Rich Text), Instant Rendering (Typora-like) and Split View modes. | ||||||||||
React Data Grid | 6,071 | 441 | 206 | 2 days ago | 1,017 | September 16, 2022 | 157 | other | TypeScript | |
Feature-rich and customizable data grid React component | ||||||||||
React Draft Wysiwyg | 6,031 | 786 | 337 | 2 months ago | 131 | July 17, 2022 | 695 | mit | JavaScript | |
A Wysiwyg editor build on top of ReactJS and DraftJS. https://jpuri.github.io/react-draft-wysiwyg |
Typist is the mighty Tiptap-based rich-text editor React component that powers Doist products, which can also be used for displaying content in a read-only fashion. Typist also supports a plain-text mode, and comes with HTML/Markdown serializers.
Note
This project is not attempting to be an all-purpose rich-text editor. Whilst everyone is welcome to fork or use this package in their own products, development decisions are centered around Doist product requirements.
npm install --save @doist/typist
If you are using npm 7+ and the legacy-peer-deps
options is not enabled, peer dependencies should have been automatically installed for you with the command above. Otherwise, you can install them with:
npm info @doist/typist peerDependencies --json \
| command sed 's/[\{\},]//g ; s/: /@/g' \
| xargs npm install --save
import { TypistEditor, RichTextKit } from '@doist/typist'
function TypistEditorContainer({ content }) {
return (
<TypistEditor
placeholder="A full rich-text editor, be creative"
content={content}
extensions={[RichTextKit]}
/>
)
}
If you're looking for additional documentation, in-depth examples, or a live demo, please check out our Storybook.
A curated list of open-source rich-text editors powered by Tiptap that we can draw inspiration from:
If you're interested in contributing code and/or documentation, please read our contributing guide.
The use of this source code is governed by an MIT-style license that can be found in the LICENSE file.