- make sure you have
npminstalled. - from project root, run
npm install. - for (re-)building
main.js, runnpm run watch. - for serving you can use e.g.
http-server .(if needed, install it globally:npm install -g http-server).
- check status:
git status - add changes:
git add . - commit changes:
git commit -m "commit message" - pull from origin:
git pull - push to origin:
git push