Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 428 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 428 Bytes

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