evolmk / evol-mean-cheatsheet

MEAN cheatsheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

evol's MEAN cheatsheet

Requirements

Installation Instructions

  1. Install your Node dependencies: npm install
  2. Start the application nodemon server.js
  3. Visit the application in your browser on port configured: http://localhost:8080
  4. Enjoy!

NODE

Get Version
node --version && npm --version

Install a package globally, add -g flag. leave off -g to install locally to current folder
npm install PACKAGENAME -g

View what packages are installed globally
npm list -g --depth=0

NODEMON

Nodemon is a utility that will monitor for any changes in your source and automatically restart your server.
npm install -g nodemon

BOWER

Install Bower globally
npm install bower -g

Install a Bower Package to your local directory and update bower.json dependencies list
bower install PACKAGENAME --save

GRUNT & GULP

Install Grunt & Gulp globally - we'll probably just use Grunt tho
npm install -g gulp grunt-cli

About

MEAN cheatsheet