Signed-off-by: Bill Erickson <berickxx@gmail.com>
* Integrated ReactiveX library for JavaScript (RxJS).
* ng-cli Command line tool for compiling, testing, building.
+== Lazy Loading
+
+[source,js]
+----------------------------------------------------------------------
+const routes: Routes = [
+ { path: '',
+ component: WelcomeComponent
+ }, {
+ path: 'staff',
+ resolve : {startup : EgBaseResolver},
+ loadChildren: './staff/staff.module#EgStaffModule'
+ }
+];
+----------------------------------------------------------------------
+
== Integrated I18N
[source,html]