Thinking in Angular2

& Angular CLI

  1. npm install -g angular-cli
  2. ng new kmeetup
  3. cd kmeetup
  4. ng serve

Angular CLI

Save boilerplate code, time and use best practices from google's Angular2 team

Yeah, originally taken from 'Thinking in React'

'Thinking in Angular2'

  • break your application into reusable components
  • display components: dummy components that in charge of displaying data in UI
  • smart components: contains logic and providing the data to dummy components

https://github.com/dvh91/kmeetups

kmeetups app

  • Design by UX MASTER- @Hillel
  • Contains project main features
  • Built with angular cli
  • ngrx - redux for angular2 will be used
  • Static page (HTML CSS) included in '_templates' folder

Mock RESTFUL server (until real server):

  • https://kmeetup-be.herokuapp.com/events
  • https://kmeetup-be.herokuapp.com/events/1
  • https://kmeetup-be.herokuapp.com/profile

"Thinking in Angular2" & Angular CLI

By Dvir Hazout

"Thinking in Angular2" & Angular CLI

  • 569