mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-18 20:49:36 +01:00
Notesnook Theme Builder
The theme builder app is built using React, Typescript & Javascript.
Try it out! | Developer guide | How to build? | Desktop app
Getting started
Build instructions
Before you start, it is recommended that you read the contributing guidelines.
Setting up the development environment
Requirements:
Before you can do anything, you'll need to install Node.js on your system.
Once you have completed the setup, the first step is to clone the monorepo:
git clone https://github.com/streetwriters/notesnook.git
# change directory
cd notesnook
Once you are inside the ./notesnook directory, run the preparation step:
# this might take a while to complete
npm install
Now you can finally start the web app:
npm run start:theme-builder
If you'd like to build in production mode:
npm run build:theme-builder
# serve the app locally
npx serve apps/theme-builder/build
