Skip to content

Instantly share code, notes, and snippets.

@battaile
Last active August 29, 2015 14:13
Show Gist options
  • Save battaile/11e2dedec6ded609fa02 to your computer and use it in GitHub Desktop.
Save battaile/11e2dedec6ded609fa02 to your computer and use it in GitHub Desktop.
basketball-gm windows developer 'Getting Started' notes
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