Table of Contents

Staff Client Angular 5 Migration Notebook

Resources

Bootstrap 4 Notes

See also https://angular-2-training-book.rangle.io/handout/migrate/ng-upgrade/order_of_operations.html

I. Follow the AngularJS Style Guide

II. Use a Module Loader

  1. Angular5 (well, ng-cli) uses Webpack by default.
  2. May be implemented independent of any Ang5 upgrade plans.
  3. Improved options for creating of JS, etc. bundles
  4. Can be implemented in low-impact phases.
    1. Phase I: Use webpack as a drop-in replacement for Grunt for compiling builds (and use npm to run karma unit tests).
      1. No application code changes are required.
      2. I have a branch that does this (plus Angular 1.6 – https://bugs.launchpad.net/evergreen/+bug/1739803 [pushed to 3.1-beta])
    2. Phase II: Start using ES6-style module 'import' statements for specifying dependencies.
      1. These ultimately replace <script/> imports

III. Migrating to TypeScript

IV. Using Component Directives

V. Upgrade with ngUpgrade