All Projects β†’ BoostIO β†’ Boostnote.next

BoostIO / Boostnote.next

Licence: other
Boost Note is a powerful, lightspeed collaborative workspace for developer teams. Forum (New!): https://github.com/BoostIO/BoostNote-App/discussions

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Boostnote.next

Mininote
πŸ“” A simple Markdown note-taking editor
Stars: ✭ 171 (-93.62%)
Mutual labels:  note-taking, notes, markdown, wiki
Notes Cli
Small markdown note taking CLI app playing nicely with your favorite editor and other CLI tools
Stars: ✭ 122 (-95.45%)
Mutual labels:  note-taking, notes, markdown
Wreeto official
Wreeto is an open source note-taking, knowledge management and wiki system.
Stars: ✭ 241 (-91.01%)
Mutual labels:  note-taking, notes, wiki
Web
A free, open-source, and completely encrypted notes app. https://standardnotes.com
Stars: ✭ 3,061 (+14.13%)
Mutual labels:  note-taking, notes, markdown
Lifelong Learning
βœ… βœ… βœ… A massive repo filled with notes on everything from coding to philosophy to psychology to marketing to product
Stars: ✭ 297 (-88.93%)
Mutual labels:  note-taking, notes, markdown
Nb
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
Stars: ✭ 3,846 (+43.4%)
Mutual labels:  note-taking, notes, markdown
Sublimeless zk
A note taking app, Markdown editor, and text browser, featuring ID based wiki style links, and #tags, intended for zettelkasten method users. Loaded with tons of features like sophisticated tag search, note transclusion, support for note templates, bibliography support, etc. to make working in your Zettelkasten a joy πŸ˜„
Stars: ✭ 153 (-94.3%)
Mutual labels:  note-taking, markdown, wiki
Notes
πŸ“ Simple delightful note taking, with more unix and less lock-in.
Stars: ✭ 939 (-64.99%)
Mutual labels:  note-taking, notes, markdown
Gitjournal
Mobile first Note Taking integrated with Git
Stars: ✭ 1,138 (-57.57%)
Mutual labels:  note-taking, notes, markdown
Mkdocs Awesome Pages Plugin
An MkDocs plugin that simplifies configuring page titles and their order
Stars: ✭ 136 (-94.93%)
Mutual labels:  markdown, wiki
Notejot
Stupidly-simple notes app.
Stars: ✭ 138 (-94.85%)
Mutual labels:  note-taking, notes
Hedgedoc
HedgeDoc - The best platform to write and share markdown.
Stars: ✭ 2,498 (-6.86%)
Mutual labels:  notes, markdown
Tiddlyresearch
Local and Anki-compatible note-taking tool based on TiddlyWiki
Stars: ✭ 129 (-95.19%)
Mutual labels:  notes, wiki
Githubdocs
Easily build a searchable documentation app using markdown files in your Github Repo or local Markdown files.
Stars: ✭ 122 (-95.45%)
Mutual labels:  markdown, wiki
Deepwiki
A lightweight Markdown wiki system in PHP
Stars: ✭ 188 (-92.99%)
Mutual labels:  markdown, wiki
Vsnotes
Simple VS Code extension for plain text note taking.
Stars: ✭ 146 (-94.56%)
Mutual labels:  note-taking, notes
Hads
πŸ“š Markdown superpowered documentation for Node.js
Stars: ✭ 147 (-94.52%)
Mutual labels:  markdown, wiki
Wiki
Awesome way to learn together! 🀣
Stars: ✭ 119 (-95.56%)
Mutual labels:  markdown, wiki
Gollum
A simple, Git-powered wiki with a sweet API and local frontend.
Stars: ✭ 12,339 (+360.07%)
Mutual labels:  wiki, documentation-tool
Cattaz
Realtime collaborative tool which can run custom applications in a Wiki page
Stars: ✭ 191 (-92.88%)
Mutual labels:  markdown, wiki

uiimage

Collaborate easily, in real-time.

Boost Note is a collaborative real-time markdown note app for developer teams.

πŸ‘· Core Team (maintainers)

πŸ“¦ Download App

πŸ–₯ Desktop

πŸ“± Mobile

πŸ’₯ Have some troubles?

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.

🀲 Wanna contribute?

If you're interested in our project, you can participate in many different ways.

  • Sharing your idea
  • Helping community
  • Resolving existing issues

Read our contributing guide, to learn about our development process, how to propose bugfixes and improvements.

Sharing your idea

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.

Helping community

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.

Resolving existing issues

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.

Development

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.

How to run the app

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

How to extend mock backend

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
    }
  },
}

Scripts

  • Development scipts
    • npm run dev:cloud : Run webpack for the cloud space
    • npm run dev:webpack : Run webpack for the desktop app main window renderer
    • npm run dev:electron : Run webpack for the desktop app main processor
    • npm run dev:mobile : Run webpack for the mobile app
    • npm run lint : Check lint errors
    • npm run format : Try to fix lint errors automatically
    • npm test : Run test script
    • npm run tsc : Check type errors
  • Build scripts
    • npm run build:electron-production : Build assets for the desktop app
    • npm run build:cloud-production : Build asssets for the cloud space
    • npm run build:mobile-production : Build assets for the mobile app
    • npm start : Run the desktop app with prebuilt assets
    • npm 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 signing
    • npm run release : Create desktop app installers for production and upload them to GitHub

πŸ”— Links

βš–οΈ License

GPL-3.0 Β© 2016 - 2021 BoostIO

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].