Angular Skeleton

Table of Contents

Requires

Dependencies

Installation

Install Gulp and Bower:

   $ npm install -g gulp bower

Install all NPM and Bower dependencies:

   $ npm install && bower install

Installing a new third-party library via NPM

   $ npm install {--save|--save-dev} <package_name>

Learn more information about install options.

All third-party libraries for the client-side development are located in workspace/scripts/vendors folder.

Installing a new third-party library via Bower

   $ bower install {--save|--save-dev|--production|--force-latest} <package_name>

Learn more information about install options.

All third-party libraries for the client-side development are located in workspace/scripts/vendors folder. The .bowerrc file configures destination folder and etc.