ng2-start icon indicating copy to clipboard operation
ng2-start copied to clipboard

Minimal Angular2 starter with webpack

ng2-start

This is a minimal setup to start creating an angular2 application with webpack.

Instructions

Requirements

{
  "node": ">=6"
}

Setup environment

# cd into ng2-start
cd ng2-start

# Install dependencies
npm install

Serve and Build

# Start dev server at http://localhost:9000
npm start

# Build
npm run build

# Build for production (uses aot compiler)
npm run build:prod