Skip to content
Hans Larsen edited this page Mar 31, 2016 · 1 revision

Storybook

This page includes stories to create Angular CLI apps.

Please note that not all stories are currently implemented.

App Creation

# Create an app
ng new my-todo-app

# Generate a TODO component
ng generate component todo

# Serve the app
ng serve

App Creation Using Template

ng new my-todo-app --template=simple-todo
ng serve

Using A Template Library

ng new my-todo-app
# Could be `ng use` as well.
ng install complex-todo-addon
ng generate todo routes/+todo

Thirdparty Installation

ng new my-todo-app
ng install sass