Code samples for the JavaScript book: MEAN Machine
- node and npm
- nodemon -
npm install -g nodemon
- bower -
npm install -g bower
- gulp -
npm install -g gulp
Installation instructions will vary for each chapter, but if it is a Node/Angular application (all except chapter 11), the following will apply:
- Install your Node dependencies:
npm install
- Start the application
nodemon server.js
- Visit the application in your browser: http://localhost:8080
- Enjoy and learn!