ToDo list tool with Urgency-Importance feature.
Install Git.
Install nvm-windows.
Install Node.js v11.14.0. Please launch Git Bash.
$ nvm install 11.14.0
$ nvm use 11.14.0
$ node -v # v11.14.0
Update npm.
$ npm -v
$ npm update -g npm
However, you may get error. Therefore, your npm version has not been updated. Please try below commands.
$ cd "$PROGRAMFILES"/nodejs
$ rm npm npx npm.cmd npx.cmd
$ mv node_modules/npm node_modules/npm2
$ node node_modules/npm2/bin/npm-cli.js i -g npm@latest
$ rm -rf node_modules/npm2/
$ npm -v # v6.9.0
Watch your error log when you save your editing code.
$ npm run watch
Edit your code.
Debug.
$ npm run start
master
In this branch, all commits are guaranteed to execute.
develop
To synchronize some feature branches.
feature/abcXyz/userName
abcXyz
: feature name wrote in camelCase
userName
: TauXdev, GadPulse, asaiasa, or narugit
To synchronize some user's branches to complete abcXyz feature.
You can create any branches under feature/abcXyz/userName
.
It's OK if you push the branches under feature/abcXyz/userName
or not.
Follow this guide.
You can pull reqest and merge in any branch by yourself.
Use TypeStrong/typedoc. Here is the guidline.
Use TypeScript Deep Dive.
Use Material Design Lite.