The development branch is main. This is the branch that all pull requests should be made against. The changes on the main branch are published to GitHub release regularly.
To develop locally:
- Fork this repository to your own GitHub account and then clone it to your local device.
- Create a new branch:
git checkout -b MY_BRANCH_NAME
- Install the dependencies with:
npm ci
- Start developing and watch for code changes:
npm run dev
- It will open a browser tab at
http://localhost:3000/
You can build the project, with:
npm run buildYou can then serve the built files from a server, with:
mpm run startnpm run testIf you would like to see the coverage, you can do
npm run test:coverageTo check the formatting of your code:
npm run lint- Robin Thomas (@robin-thomas]
