Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 999 Bytes

File metadata and controls

26 lines (18 loc) · 999 Bytes

Angular 1.5 + Webpack + OcLazyLoad starter

Sample client web application based on:

  • Angular1.5 as a MVC frontend framework
  • Gulp as a task runner, which works in Node.js javascript runtime
  • Webpack as a javascript dependency manager and bundling/distribution packager
  • Webpack development server

Prerequisites

To prepare environment before you can do anything:

  1. Install Node.js
  2. Install node-gyp npm install -g node-gyp , which is required to build native binary code in certain modules
  3. Install Gulp globally by running npm install -g gulp
  4. Install required node modules for the project by npm install at project folder
  5. Run app at localhost:8100 by command gulp dev or build app by command gulp

Notes