Skip to content

cebor/ng2-start

Repository files navigation

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