In a previous post, I wrote about Lazy Loading Angular Libraries and how I used Webpack Bundle Analyzer to help visualise my project's bundle sizes and Chrome DevTools Network panel to inspect the properties of individual resources. My goal being to ensure that my App's main bundle was as small…
Angular CLI
How To: ng update
These are the steps I followed to update my Angular project: I started with a clean commit of a working version I created a new git branch for the update I ran 'ng update' I rebuilt and then tested my app I commited the changes and then merged them into…
The Future of the Ionic CLI
The Ionic CLI should be your go to tool for building and maintaining Ionic applications. It should provide: A standardised project structure; code scaffolding; aliases; environment specific configuration; themes; logging; unit and e2e testing; and baked in best practices that have been discovered by the community over time. Schematics One…
Angular CLI, Angular 4 and wijmo's FlexSheet
In this post, I'll walk you through the steps I followed to add the wijmo FlexSheet component to an Angular 4 project, created using the Angular CLI. Prerequisites Node.js (and npm) TypeScript Angular CLI wijmo FlexSheet Note: This post will walk you through the steps required to install Node.…
Angular 4 and ng-bootstrap
In this post, I'll walk you through the steps I followed to add ng-bootstrap to an Angular 4 project created using the Angular CLI. Prerequisites Node.js (and npm) TypeScript Angular CLI To install Node.js (and npm): curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash…