Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Notable | 21,689 | 3 months ago | 666 | |||||||
The Markdown-based note-taking app that doesn't suck. | ||||||||||
Github Profile Readme Generator | 15,941 | 2 days ago | 294 | apache-2.0 | JavaScript | |||||
🚀 Generate GitHub profile README easily with the latest add-ons like visitors count, GitHub stats, etc using minimal UI. | ||||||||||
Mdx | 15,209 | 1,354 | 1,560 | 17 days ago | 110 | August 17, 2022 | 22 | mit | JavaScript | |
Markdown for the component era | ||||||||||
Memos | 14,326 | 15 hours ago | 4 | July 09, 2022 | 146 | mit | TypeScript | |||
A lightweight, self-hosted memo hub. Open Source and Free forever. | ||||||||||
Mdx Deck | 11,040 | 5 months ago | 144 | mit | JavaScript | |||||
♠️ React MDX-based presentation decks | ||||||||||
React Markdown | 10,546 | 3,628 | 1,359 | 25 days ago | 86 | April 20, 2022 | 3 | mit | JavaScript | |
Markdown component for React | ||||||||||
Tinacms | 8,843 | 5 | 61 | a day ago | 105 | September 21, 2022 | 84 | other | TypeScript | |
The Markdown CMS | ||||||||||
Nextra | 7,550 | 18 | 21 hours ago | 109 | September 17, 2022 | 182 | mit | TypeScript | ||
Simple, powerful and flexible site generation framework with everything you love from Next.js. | ||||||||||
Markdoc | 6,336 | 19 | a day ago | 11 | September 22, 2022 | 10 | mit | TypeScript | ||
A powerful, flexible, Markdown-based authoring framework. | ||||||||||
Vditor | 6,312 | 11 | 17 | 3 days ago | 310 | August 04, 2022 | 79 | mit | TypeScript | |
♏ 一款浏览器端的 Markdown 编辑器,支持所见即所得(富文本)、即时渲染(类似 Typora)和分屏预览模式。An In-browser Markdown editor, support WYSIWYG (Rich Text), Instant Rendering (Typora-like) and Split View modes. |
Boost Note is a document driven project management tool that maximizes remote DevOps team velocity.
If you don't know how to use the app, please create a discussion on our Q&A discussion page.
If you find a bug, please create an issue to our GitHub issue tracker.
If it is urgent or private, please join our Slack channel and send a direct message to @rokt33r.
If you're interested in our project, you can participate in many different ways.
Read our contributing guide, to learn about our development process, how to propose bugfixes and improvements.
To improve the app, we need your idea! It could be a new feature or an improvement for existing features. If you have any, please create a discussion in Feature Requests category.
There are many ways to help our community. You can share how you're using our app by writing an article. You can write it in General discussion page, external developer community (Dev.to or Reddit) and your blog if you have one.
Also, you can help other users by answering their questions in here.
We have left the "help wanted" label to some issues which external contributors could try to resolve. Some of them might have a small bounty so you can get a cup of coffee from it after hacking. If you find any interesting issues but their specs are not clear or you don't know how to fix them, please leave a comment on the issues. Then, we will give you more instructions.
Currently, we provide the frontend source code only so you cannot host our backend server by yourself. But you can participate in development via mock backend mode. Although it still doesn't cover every API yet, you can access the basic folder and document management.
Create .env file.
NODE_ENV=development
MOCK_BACKEND=true
Run webpack processors. You have to run them in separate terminals.
npm run dev:cloud
# You can skip next two scripts if you don't need to run electron app.
npm run dev:electron
npm run dev:webpack
When the mode is enabled, all API calls will be passed to src/cloud/api/mock/mockHandler.ts
.
The source code is quite similar to a router interface. All you need to is method
, pathname
and a handler function. So, when you confront Not Found
error while calling GET /api/something
, you can simply add a mock route like below.
{
method: 'get',
pathname: 'api/something',
handler: ({ search }): GetSomethingResponse => {
return {
...something
}
},
}
npm run dev:cloud
: Run webpack for the cloud spacenpm run dev:webpack
: Run webpack for the desktop app main window renderernpm run dev:electron
: Run webpack for the desktop app main processornpm run dev:mobile
: Run webpack for the mobile appnpm run lint
: Check lint errorsnpm run format
: Try to fix lint errors automaticallynpm test
: Run test scriptnpm run tsc
: Check type errorsnpm run build:electron-production
: Build assets for the desktop appnpm run build:cloud-production
: Build asssets for the cloud spacenpm run build:mobile-production
: Build assets for the mobile appnpm start
: Run the desktop app with prebuilt assetsnpm run meta
: Prepare meta data for the desktop app building(Generate package.json for electron-build module)npm run prepack
: Create desktop app installers without signingnpm run release
: Create desktop app installers for production and upload them to GitHub