Try it out! | Developer guide | How to build?
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-importer.git
# change directory
cd notesnook-importer
Once you are inside the ./notesnook-importer
directory, run the preparation step:
# this might take a while to complete
npm install
Now you can finally start the importer:
npm run start
If you'd like to build in production mode:
npm run build
# serve the app locally
npx serve apps/importer/build
When you are done making the required changes, you need to run the tests. The tests can be started with a single command:
npm run test:core