download the code, update the local copy, notice new files, make and upload changes
$ git clone https://github.com/zootella/node $ git pull $ git diff > diff.txt $ git add . $ git commit -a -n -m "note" $ git push
add a new package, install packages
$ npm install -S ~name~ $ npm install -D ~name~ $ npm install
run in node and electron on windows and mac
$ node load.js $ node load.js main ~name~ $ electron --version $ electron load.js $ electron load.js main ~name~ ~arguments~ $ npm run electron-version $ npm run electron-load $ npm run electron-load main ~name~ ~arguments~
run and test
$ node load.js main ~name~ ~arguments~ $ node load.js test $ node load.js test ~tag~ $ nodeunit name.test.js $ nodeunit *.test.js