- require: nodejs + npm
# get the code
git clone [email protected]:nan-ci/platform.git
# or use https://github.com/nan-ci/platform.git
# open the directory
cd platform
# run dev server
npm start
git checkout -b feature-name
# make sure you are on your branche
git checkout feature-name
# make sure we are up to date
git fetch
# rebase from master
git rebase origin/master
# force update your branch
git push orgin HEAD --force-with-lease
git pull -r --autostash
# run prettier
prettier -w **.jsx **.js **.md
# run test in watch mode
npm run dev