





Angular 5/6 Universal Progressive Web App - starter 
!
angular-universal-PWA report$3
This repo is the boilerplate for
(PWA) progressive web app with Angular Universal (serverside rendering).
It is prepared to be easily deployed on serverless environment (Google Cloud Functions & AWS Lambda supported).
Live demo
Angular Universal PWA on AWS Lambda + API GatewayContent
-
What's inside? -
Getting started -
Deployment -
To do -
Question, Problem, Feature Request -
Funding -
Credentials What's inside?
* PWA - content is cached and available offline, it can be also installed as native app on Android devices and Google Chrome
* AMP - Accelerated Mobile Pages - super fast initial load (down to ~650ms)
* Push notifications:
* Vapid webpush (Chrome and Firefox) - Using
aws-sns-webpush as back-end
* Safari push - Using
aws-sns-webpush as back-end
* Server-side rendering with Angular Universal
* TransferState
* Lazy loading modules
* External modules (You can split your application into multiple projects and lazy-load them,
read more here)
TBD after CLI merge - [#150]
* Angular Material
* Unit tests
* Firebug Lite (great solution for development on touch-screen devices, ie: tablets)
$3
* Angular 5.x & 6.x
* Angular CLI 1.x & 6.x
* Webpack
* Serverless framework
Get Started
Whatch on Youtube:

$3
``bash
npm install -g angular-universal-pwa
`
Create project:
`bash
ng new --collection angular-universal-pwa myApp
cd myApp
npm start
`
#### CLI params
* --provider - What serverless provider you want to use? (aws | gcloud | both) - default both
* --gaTrackingCode - Provide your Google Analytics tracking code, to enable GA (ie --gaTrackingCode UA-123456)
* --firebug - Decide if you want to download firebug-lite (true | false) - default false
##Running modes
* Development mode (autoreload only): `npm start`
* Development mode (autoreload + unit tests): `npm run build:dev`
* Development mode (autoreload + firebug lite): `npm run build:firebug`
* Development mode (autoreload + firebug lite + unit tests): `npm run build:dev:firebug`
* Unit tests: `npm run test`
Deployment
$3
`
sh
npm run build:prod
npm run server
`
$3
#### AWS Lambda`
bash
ng new --collection angular-universal-pwa myApp --provider aws
npm run build:deploy
`
#### Google Cloud Functions
`
bash
ng new --collection angular-universal-pwa myApp--provider gcloud
npm run build:deploy
``
To do
* prerender app for 'no-backend' hosting
* microservices support - make replacement eligible external module without recompiling whole app
*
ng-http-sw-proxy (all requests done offline, are synced when app comes back online) - not working since Angular 5.x (more info can be found in
this issue)
* e2e tests
Won't implement:
* load static content from S3 (JavaScript, styles, images):
* when serving all static content from S3 load speed up is not really visible (increase is around ~0,2 sec),
* problems with CORS on Chrome,
* problems with compression of some files (.js files are not compressed in some cases)
* needs a lot of manual setup (cloudfront setup etc.)
Looking for something more?
Feel free to
create issue with your feature request Funding
You can support development of this project via
Open Collective,
Donorbox,
Liberapay,
$3
Support this project with a monthly donation and help us continue our activities. [Become a backer]






























$3
Become a sponsor and get your logo on our README on GitHub with a link to your site. [Become a sponsor]






























Credentials
* Checkout my
home page and find out more about me
* Inspired by
ng-universal-demo