TOAST UI Editor VS tiptap

Compare TOAST UI Editor vs tiptap and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
TOAST UI Editor tiptap
17 81
16,706 23,366
0.6% 2.7%
0.0 9.6
2 months ago 9 days ago
TypeScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

TOAST UI Editor

Posts with mentions or reviews of TOAST UI Editor. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-09.
  • I'm making a GlowUI text editor to get back into coding
    3 projects | /r/Windows11 | 9 Jun 2023
    If you need a WYSIWYG markdown editor you can try Toast UI Editor or simply use Markdown Live add-on for Visual Studio Code
  • Ask HN: Help me pick a front-end framework
    13 projects | news.ycombinator.com | 11 Sep 2022
    Can you elaborate a bit more on this part, please?

    > I'm thinking of building a text-annotation based app _alone in my spare time_. The core usage loop is about viewing and interacting with "visual markup" applied to a body of text. So lots of tooltips/hoverbars I guess.

    Or show us a mockup... doesn't have to be anything fancy, just like a pen and paper sketch or a simple Figma.

    I'm asking because it kinda sounds like you're wanting to do something like an online IDE or Google Docs, where you're manipulating a body of text in the style of a rich text editor. If that's the case, it's possible the HTML DOM model isn't quite the right fit for you... you may find it better to abstract over a Canvas or WebGL object instead of trying to shoehorn that experience into the raw DOM. That way you have full control over rendering, outside of the normal layout/styling/rendering loop. It might also make a good case for a single-page app (at least the majority of the editor itself would be, and the other stuff -- marketing, blog, etc. -- can be routed to individual pages).

    In that case, it wouldn't be so much a question of "framework" in the sense of React, Vue, etc., which traditionally work on the DOM. It might be more a question of "engine", like whether to use something like PixiJS to manipulate the graphics layer vs rolling your own. State management can be done with something like Redux (even without React), or if you choose to use a frontend framework for the rest of it, you can maybe use their state solution with your rendering engine.

    In addition to choosing a low-level graphics lib, you can also look at some existing rich text markup solutions. A CMS I used had a good blog post on this: https://www.datocms.com/docs/structured-text/dast#datocms-ab... along with their open-source editor: https://github.com/datocms/structured-text

    A more widespread one is the toast UI editor: https://ui.toast.com/tui-editor

    I know you're not just working in Markdown, but these give you an idea of what it's like to work with complex text trees in JS.

    Once you have the actual text editor part figured out, choosing the wrapper around it (again, just for marketing pages, etc.) is relatively trivial compared to the difficulty of your editor app. I really like Next.js myself (if you choose React), but I don't think you could really go wrong with any of the major choices today... React/Vue/Svelte/etc. And it looks to me like the complexity of your site wouldn't really be around that anyway, but the editor portion.

    Lastly: I don't think ANY JS tool or package is going to be maintained in 10 years. Frankly, 2 years is a long time in the JS ecosystem :( I'm not defending this phenomenon, I hate it too, but that's the reality of it. If long-term maintenance is a goal of yours, you might want to consider writing abstraction layers over third-party tools you use, so you can easily swap them out when future things come out (because they will). The web itself is changing too fast for libraries to keep up; instead, people just write new ones every few years. An example of this is the pathway from the Canvas to WebGL to workers to WASM (and how to juggle heavy computational vs rendering loops around)... a lot of the old Canvas-based renderers, which were super powerful in their time, are now too slow vs the modern alternatives. Nobody is going to port the old stuff over, they just make new libs. It's likely that trend will continue in the JS world (that whatever you write today will be obsoleted by a new web API in a few years).

    Lastly, as an aside, TypeScript is a superset of JS... if you find a JS project/lib/plugin that you want to use, there will often be types for it made by the community (https://github.com/DefinitelyTyped/DefinitelyTyped) , or you can write your own types for it. I don't really have an opinion about TypeScript vs writing in some other language and compiling to JS, but it would probably be easier to find help (especially frontend) in the future if you stick with TypeScript instead of convoluting your stack with multiple languages. Sounds like most of your app will be clientside anyway with limited backend needs.

    ---------

    Tech aside... have you considered partnering with a frontend dev for this? I know you said "alone", but just having someone set up the basic skeleton of such an app with you for the first month or two could be super helpful. Or a UX person to help you with some of the interactions before you start serious coding. They don't have to be with you the whole journey, but maybe they can help jumpstart your project so you can then work on adding features & polish in your spare time, instead of figuring out basic architecture? Unless, of course, that's the part you actually enjoy. In that case, don't let anyone rob of you that :)

    Have fun! Sounds like a cool project.

  • Is there any *real* WYSIWYG markdown editor besides Typora?
    2 projects | /r/opensource | 8 Aug 2022
    I think the Toast UI Editor can achieve what you want, and it does a pretty good job at that. Is built upon ProseMirror. Won't be a lot else out there since it's actually quite a hard thing to achieve once you get into the detail.
  • TOAST UI Editor VS ink - a user suggested alternative
    2 projects | 7 May 2022
  • Implement ToastUI Editor with Next.JS (w/ TypeScript)
    3 projects | dev.to | 5 Apr 2022
    To make it as brief as possible, this post will only deal with some of the issues that you might encounter while implementing ToastUI Editor inside Next.JS projects.
    3 projects | dev.to | 5 Apr 2022
    TUI Editor Core TUI Editor Github PrismJS/prism Joo Hee Kim's Medium post yceffort blog - Korean
  • Switching Rich Text Editors, Part 1: Picking Tiptap
    13 projects | news.ycombinator.com | 11 Feb 2022
    ToastUI (https://ui.toast.com/tui-editor), which builds on ProseMirror, was really easy to set up and has been very stable for us. It's a WYSIWYG editor that just renders markdown, which is what we wanted to have as the base representation for written content so we have some portability later depending on how our product evolves.
  • Show HN: BookStack – An open source wiki platform and alternative to Confluence
    12 projects | news.ycombinator.com | 8 Jan 2022
    Have you looked at Toast UI Editor (MIT license)?

    https://ui.toast.com/tui-editor

    I checked out a bunch of text editors on a past project and this one has worked very well as a WYSIWYG markdown editor.

  • My pain building a WYSIWYG editor with contenteditable
    13 projects | /r/webdev | 17 Sep 2021
  • A curated list of awesome things related to Vue.js
    119 projects | dev.to | 7 Aug 2021
    toast-ui.vue-editor - Vue Wrapper for TOAST UI Editor.

tiptap

Posts with mentions or reviews of tiptap. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-04.
  • Encrypted Note Editor App In React Native
    8 projects | dev.to | 4 Mar 2024
    The Editor: The core of our app is the editor. We need an easy to use and robust rich text editor, that supports all of the features we want such as: headings, lists, placeholders, markdown, color, images, bold italic etc… For this we will use @10play/tentap-editor which is a rich text editor for react native based on Tiptap.
  • WYSIWYG editor for a new Rails project
    6 projects | /r/rails | 10 Dec 2023
    If you want bell and whistles - https://tiptap.dev/
    6 projects | /r/rails | 10 Dec 2023
    The best wysiwyg I’ve ever used https://tiptap.dev
  • Can I create another WordPress that satisfies humanity?
    10 projects | dev.to | 27 Nov 2023
    A WYSIWYG rich-text editor using tiptap2 and Element Plus for Vue3
  • Ask HN: Which open-source editor would you choose to build something like Notion
    3 projects | news.ycombinator.com | 6 Sep 2023
    You can build a Notion-like editor on top of https://tiptap.dev :-) Here is a demo of what such an editor might look like: https://demos.tiptap.dev/

    Since Tiptap is headless, you have the freedom to design and develop the UI exactly the way you want.

  • Launch HN: Tiptap (YC S23) – Toolkit for developing collaborative editors
    17 projects | news.ycombinator.com | 1 Aug 2023
    Hi HN! We're Nick, Patrick, Philip, Sebastian, Sven, and Timo from Titap (https://tiptap.dev/), an open source developer toolkit for building collaborative editing apps. Our editor framework, based on ProseMirror, is at https://github.com/ueberdosis/tiptap, and our real-time collaboration backend, based on Yjs, is at https://github.com/ueberdosis/hocuspocus.

    Building editor interfaces like Notion or Google Docs in your web app takes a lot of work and time. Our open source tools and cloud services let you build collaborative content editing faster—in days or weeks, rather than months or years. And this is just for the editor. If you want real-time collaboration or other advanced features like version history in your editor, the overall workload quickly escalates—you will need a robust and serious backend infrastructure that requires even more time to set up and maintain. This doesn’t make sense for most frontend developers or most startups.

    We spent eight years as a digital agency developing applications with complex content editing functionality. We learned the hard way how limited the existing editors were. After building Tiptap as a headless editor framework with an extension-based architecture, we needed to allow multiple users to edit content simultaneously, which got complicated. There was no simple solution that could be integrated quickly. So we built that too.

    The Tiptap editor is based on the JS framework ProseMirror, which is a good foundation for editors. The learning curve for ProseMirror is steep because it's complicated to understand and lacks simple APIs and documentation. It takes a lot of code around ProseMirror to develop a modern user experience. We’ve taken care of that for you.

    Tiptap is headless, so it will work with whatever frontend or design you have in mind—we make no assumptions about your UI. You can use it to develop block-based editors like Notion, classic interfaces like Google Docs, or whatever you need. It's also framework agnostic, so you can use it with React, Vue, etc., or vanilla JavaScript. And it's highly customizable through our extension architecture. We also provide an API to access ProseMirror's internals through Tiptap if you want to dig deep into the core.

    Adding real-time collaboration to your editor is as easy as installing and configuring an extension. Our collaboration backend, called Hocuspocus, uses Yjs. This is a widely used implementation of CRDTs (conflict- free replicated data type). Hocuspocus makes it easy to set up a Node.js websocket server to handle communication between multiple peers to synchronize data. Like the Tiptap editor, Hocuspocus is designed to be extensible according to your needs. Also, Hocuspocus can work independently of Tiptap with other editors like Lexical or Slate.

    An earlier version of Tiptap got discussed a couple years ago at https://news.ycombinator.com/item?id=26901975. We’ve been enjoying wider adoption since then. For example, Substack uses Tiptap for their editor that allows creators to write content on substack.com, and YC uses Tiptap in their Bookface forum (which is basically HN for YC alums).

    With the Tiptap Cloud, we offer managed backend services if you don't want to build and maintain every feature yourself. For real-time collaboration, we provide a cloud infrastructure with multiple datacenter regions where you can deploy Hocuspocus. The Tiptap AI integration beta is a service where you connect your OpenAI API key to our backend and install the Tiptap editor AI extension to get AI writing experience in your editor. Here’s a demo: https://ai-demo.tiptap.dev/

    We invite you to explore Tiptap's capabilities in your app, contribute to its open source development, and (hopefully!) join our welcoming community. We'd love to hear what you've already built with Tiptap or what's stopping you from creating something with it :-) We look forward to all of your comments!

    17 projects | news.ycombinator.com | 1 Aug 2023
    The core of Tiptap (https://github.com/ueberdosis/tiptap) will remain free and under MIT license. Thanks for your feedback on the pricing page here!
    17 projects | news.ycombinator.com | 1 Aug 2023
    The first link shows a discussion that started in July 2020, when Tiptap was only available in version 1. The new major version 2, which is a complete rewrite, was in development. The biggest drawback the GitLab engineers had was the lack of a test suite in Tiptap 1. That's understandable, because as a key component of your application, testing is necessary to ensure that you catch breakable changes. Tiptap 2 does just that. [1]

    [1] https://github.com/ueberdosis/tiptap/tree/develop/tests

  • Vrite Editor: Open-Source WYSIWYG Markdown Editor
    11 projects | dev.to | 18 Jul 2023
    No good tool is built without using good tools, and Vrite Editor is no different. Before getting into WYSIWYG editors, I extensively researched available RTE frameworks, that could provide the tooling and functionality I was looking for. Ultimately, I picked TipTap and underlying ProseMirror — IMO, the best tools currently available for all kinds of WYSIWYG editors.
  • How I put ChatGPT into a WYSIWYG editor
    6 projects | dev.to | 19 Jun 2023
    The buttons had to be absolutely positioned, which required both a custom TipTap extension and tapping deeper into the underlying ProseMirror (both libraries powering the Vrite editor).

What are some alternatives?

When comparing TOAST UI Editor and tiptap you can also consider the following projects:

quill - Quill is a modern WYSIWYG editor built for compatibility and extensibility.

slate - A completely customizable framework for building rich text editors. (Currently in beta.)

lexical - Lexical is an extensible text editor framework that provides excellent reliability, accessibility and performance.

Editor.js - A block-style editor with clean JSON output

ProseMirror - The ProseMirror WYSIWYM editor

remirror - ProseMirror toolkit for React 🎉

daisyui - 🌼 🌼 🌼 🌼 🌼  The most popular, free and open-source Tailwind CSS component library

Draft.js - A React framework for building text editors.

TinyMCE - The world's #1 JavaScript library for rich text editing. Available for React, Vue and Angular

fullcalendar - Full-sized drag & drop event calendar in JavaScript

SimpleMDE - A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.