How much can customers save with Boost Note deal?
Free Usage for Community
Boost Note is a developer-friendly, markdown-based note-taking platform offering hierarchical organization, code snippet integration, offline accessibility, and cross-platform compatibility to streamline documentation, planning, and creativity for programmers, writers, students, and markdown fans.
.env
file in the project directory.NODE_ENV=development
MOCK_BACKEND=true
npm run dev:cloud
npm run dev:electron (optional, for electron app)
npm run dev:webpack
src/cloud/api/mock/mockHandler.ts
.{
"method": "get",
"pathname": "api/something",
"handler": ({ search }): GetSomethingResponse => {
return {
...something
}
}
}
method
, pathname
, and handler
with your desired configurations.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
: Attempt to fix lint errors automatically.npm test
: Run test script.npm run tsc
: Check type errors.npm run build:electron-production
: Build assets for the desktop app.npm run build:cloud-production
: Build assets 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 metadata for desktop app building.npm run prepack
: Create desktop app installers without signing.npm run release
: Create desktop app installers for production and upload them to GitHub.