├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── ngsw-config.json ├── package.json ├── server.ts ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.server.module.ts │ ├── product │ │ ├── components │ │ │ ├── product │ │ │ │ ├── product.component.spec.ts │ │ │ │ └── product.component.ts │ │ │ └── products │ │ │ │ ├── products.component.spec.ts │ │ │ │ └── products.component.ts │ │ ├── containers │ │ │ ├── product-detail │ │ │ │ ├── product-detail.component.spec.ts │ │ │ │ └── product-detail.component.ts │ │ │ └── product-list │ │ │ │ ├── product-list.component.spec.ts │ │ │ │ └── product-list.component.ts │ │ ├── models │ │ │ └── product.ts │ │ ├── product-routing.module.ts │ │ ├── product.module.spec.ts │ │ ├── product.module.ts │ │ ├── resolvers │ │ │ ├── product.resolver.ts │ │ │ └── products.resolver.ts │ │ └── services │ │ │ ├── product.service.spec.ts │ │ │ └── product.service.ts │ └── ui │ │ ├── components │ │ ├── footer │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ └── header │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── containers │ │ └── layout │ │ │ ├── layout.component.spec.ts │ │ │ └── layout.component.ts │ │ ├── services │ │ ├── ui.service.spec.ts │ │ └── ui.service.ts │ │ ├── ui.module.spec.ts │ │ └── ui.module.ts ├── assets │ ├── .gitkeep │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png │ └── logo.svg ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.server.ts ├── main.ts ├── manifest.json ├── polyfills.ts ├── robots.txt ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.server.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/package.json -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/server.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/app.server.module.ts -------------------------------------------------------------------------------- /src/app/product/components/product/product.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/components/product/product.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/components/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/components/product/product.component.ts -------------------------------------------------------------------------------- /src/app/product/components/products/products.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/components/products/products.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/components/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/components/products/products.component.ts -------------------------------------------------------------------------------- /src/app/product/containers/product-detail/product-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/containers/product-detail/product-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/containers/product-detail/product-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/containers/product-detail/product-detail.component.ts -------------------------------------------------------------------------------- /src/app/product/containers/product-list/product-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/containers/product-list/product-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/containers/product-list/product-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/containers/product-list/product-list.component.ts -------------------------------------------------------------------------------- /src/app/product/models/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/models/product.ts -------------------------------------------------------------------------------- /src/app/product/product-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/product-routing.module.ts -------------------------------------------------------------------------------- /src/app/product/product.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/product.module.spec.ts -------------------------------------------------------------------------------- /src/app/product/product.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/product.module.ts -------------------------------------------------------------------------------- /src/app/product/resolvers/product.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/resolvers/product.resolver.ts -------------------------------------------------------------------------------- /src/app/product/resolvers/products.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/resolvers/products.resolver.ts -------------------------------------------------------------------------------- /src/app/product/services/product.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/services/product.service.spec.ts -------------------------------------------------------------------------------- /src/app/product/services/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/product/services/product.service.ts -------------------------------------------------------------------------------- /src/app/ui/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/ui/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/ui/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/ui/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/ui/containers/layout/layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/containers/layout/layout.component.spec.ts -------------------------------------------------------------------------------- /src/app/ui/containers/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/containers/layout/layout.component.ts -------------------------------------------------------------------------------- /src/app/ui/services/ui.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/services/ui.service.spec.ts -------------------------------------------------------------------------------- /src/app/ui/services/ui.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/services/ui.service.ts -------------------------------------------------------------------------------- /src/app/ui/ui.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/ui.module.spec.ts -------------------------------------------------------------------------------- /src/app/ui/ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/app/ui/ui.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/tsconfig.server.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-course-SEO-friendly-PWA-with-angular-universal/HEAD/tslint.json --------------------------------------------------------------------------------