- Install Node.js
- on OSX use homebrew
brew install node
- on Windows use chocolatey
choco install nodejs
-
Install Yeoman
npm install -g yo
-
Install these NPM packages globally
npm install -g bower gulp nodemon`
Refer to these instructions on how to not require sudo
- Run the unit tests using
gulp test
(via karma, mocha, sinon). - Run the e2e tests using
gulp test-e2e
(via protractor).
- Run the project with
gulp serve-dev
to pop it all in your browser.