Last active
August 29, 2015 14:13
-
-
Save battaile/11e2dedec6ded609fa02 to your computer and use it in GitHub Desktop.
basketball-gm windows developer 'Getting Started' notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Getting set up: | |
Install node.js | |
http://nodejs.org/ | |
Upgrade the version of npm that node installed by running | |
npm install -g npm | |
Install require.js (if you want to build) | |
npm install requirejs | |
Install ESLint (if you want to verify your js) | |
npm i -g eslint | |
To get ESLint warnings: | |
npm run lint // doesnt work for me | |
npm run eslint // seems to work (no errors), but does nothing | |
eslint js/views/teamHistory.js // works |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment