Install NodeJS.
Run following:
npm install -g grunt-cli
npm install -g gulp
npm install -g bower
npm install -g json-server
npm install
Before running the application we need to minify and concatenate our JS files.
gulp js
To run the application in development mode we need to start the server.
npm start
For mocking JSON requests, we'll use the json-server NodeJS module. The initial set of mocks can be found in api/mocks.json.
json-server api/mocks.json --port 8081
With servers up and running, we can see the application by opening http://localhost:8080/.