Angular JumpStart with ES2015
The goal of this jumpstart app is to provide a simple way to get started with Angular using ES2015.
Demo
- 6.x - Live Demo on StackBlitz
- 5.x - Live Demo on StackBlitz
- 5.x - Integration between AngularJS and Angular
Features
- Bootstrapping the app and the components
- Using custom components
- Defining properties and using events in components
- Defining routes
- Using the Http object for Ajax calls
- Using data binding syntax
Note
Live demo contains main.ts and not main.js, because we need to
create the automatic bundling machinery for StackBlitz.
Indeed the js code is the same.
Notes about Angular 5.x
- perf(core): Remove decorator DSL which depends on Reflect
- Compiler: Native ES6 support for JIT and AOT
Notes about Angular 4.x
- Before Angular
5.x, Angular provided a DSL, viareflect-metadata, to code in ES5 or ES2015 (see tag 4.4.6).