Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mermaid | 55,929 | 505 | 317 | 10 hours ago | 140 | September 13, 2022 | 854 | mit | JavaScript | |
Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown | ||||||||||
Marktext | 38,726 | 24 days ago | 1 | January 17, 2022 | 1,008 | mit | JavaScript | |||
📝A simple and elegant markdown editor, available for Linux, macOS and Windows. | ||||||||||
Stackedit | 19,997 | 2 | 1 | 2 months ago | 67 | March 29, 2021 | 669 | apache-2.0 | JavaScript | |
In-browser Markdown editor | ||||||||||
Tui.editor | 15,808 | 266 | 147 | 2 days ago | 38 | December 12, 2019 | 466 | mit | TypeScript | |
🍞📝 Markdown WYSIWYG Editor. GFM Standard + Chart & UML Extensible. | ||||||||||
Editor.md | 12,685 | 35 | 8 | 3 months ago | 1 | June 27, 2015 | 549 | mit | JavaScript | |
The open source embeddable online markdown editor (component). | ||||||||||
Leanote | 11,169 | a month ago | 516 | other | JavaScript | |||||
Not Just A Notepad! (golang + mongodb) http://leanote.org | ||||||||||
Vnote | 10,043 | a month ago | 547 | lgpl-3.0 | C++ | |||||
A pleasant note-taking platform. | ||||||||||
Simplemde Markdown Editor | 8,728 | 1,516 | 201 | a year ago | 13 | June 14, 2016 | 278 | mit | JavaScript | |
A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking. | ||||||||||
Laverna | 8,700 | 2 years ago | 2 | April 22, 2015 | 448 | mpl-2.0 | JavaScript | |||
Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote. | ||||||||||
Tinacms | 8,562 | 5 | 61 | 9 hours ago | 105 | September 21, 2022 | 68 | other | TypeScript | |
A headless CMS for Markdown |
A real-time collaborative blog post editor built with GraphQL, React, React Markdown, & AWS AppSync.
This repo goes along with the medium post "How to Build a Real-time Collaborative Markdown Editor with React Hooks, GraphQL & AWS AppSync". Click here to check it out.
Try it out at www.writewithme.dev
Here's the base schema:
type Post @model {
id: ID!
clientId: ID!
markdown: String!
title: String!
createdAt: String
}
We have a Post
type that has a few properties. The most important property is the markdown. This is where we are keeping up with the state of the post.
We also have a clientId
to properly handle GraphQL subscriptions on the client.
Deploy this fullstack app with a single click to the Amplify Console:
git clone https://github.com/dabit3/write-with-me.git
cd write-with-me
npm install
amplify init
amplify push