├── src ├── assets │ └── .gitkeep ├── main.server.ts ├── favicon.ico ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── app │ ├── 404 │ │ ├── 404.component.scss │ │ ├── 404.component.html │ │ └── 404.component.ts │ ├── locales.values.ts │ ├── templates │ │ ├── templates.component.scss │ │ ├── templates.component.ts │ │ └── templates.component.html │ ├── tutorials │ │ ├── tutorials.component.scss │ │ ├── tutorials.component.ts │ │ └── tutorials.component.html │ ├── app.component.scss │ ├── app.server.module.ts │ ├── app.component.ts │ ├── app.component.html │ └── app.module.ts ├── styles.css ├── tsconfig.app.json ├── index.html ├── main.ts ├── tsconfig.server.json ├── polyfills.ts └── locale │ ├── messages.xlf │ ├── messages.en.xlf │ └── messages.es.xlf ├── Procfile ├── static.paths.ts ├── .gitignore ├── tsconfig.json ├── server.tsconfig.json ├── LICENSE ├── README.md ├── server.ts ├── package.json ├── tslint.json └── angular.json /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run start:heroku 2 | -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- 1 | export {AppServerModule} from './app/app.server.module'; 2 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/angular-translate/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /static.paths.ts: -------------------------------------------------------------------------------- 1 | export const ROUTES = [ 2 | '/', 3 | '/templates', 4 | '/**' 5 | ]; 6 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/app/404/404.component.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | text-align:center; 3 | min-height: calc(100vh - 20px); 4 | } 5 | -------------------------------------------------------------------------------- /src/app/404/404.component.html: -------------------------------------------------------------------------------- 1 |
9 | Angular 6 Site Template: Reuse the beautiful, responsive and flexible 10 | custom components we built for this Angular 6 Template. With Bootstrap 4, 11 | Angular Universal (Server Side Rendering), SEO, Lazy Loading and a detailed 12 | documentation on how to get started building Angular apps. Tons of use cases 13 | implemented the Angular way such as authentication flows, product listing, 14 | filtering, forms, routing guards and more. 15 |
16 |17 | Angular Admin Template: Created with performance and ease of 18 | development in mind, this Angular 5 web template is something you will love. 19 | It includes all the components that you might need inside a project and a 20 | detailed documentation on how to get started. 21 |
22 |9 | Firebase Authentication with Angular: When developing web applications, any 10 | type of authentication feature is necessary. If you think of the many social 11 | platforms and email sign in options available, authentication looks like a 12 | very complex task. In this Angular 5 tutorial we will explore how to setup 13 | an email/password as well as social login authentication workflows for 14 | Angular 5 apps using AngularFire2 library. 15 |
16 |17 | Learn Angular from scratch step by step: Angular step by step tutorial 18 | covering from basic concepts of Angular Framework to building a complete 19 | Angular 5 app using Angular Material components. We will go through the main 20 | building blocks of an Angular application as well as the best practices for 21 | building a complete app with Angular. Also, this tutorial shows how to setup 22 | your development environment and workflow so you can start developing Angular 23 | apps right away. 24 |
25 |26 | Angular 5 Forms and Validations: We created this angular forms 27 | tutorial to help you learn everything about Angular forms validations in 28 | angular 5 apps. These angular forms examples are updated using the best 29 | (coding) practices to build Angular 5 apps with Material Design. 30 |
31 |32 | Learn how to build a MEAN stack application in this Angular tutorial: 33 | The goal of this Angular tutorial is to guide you through the coding of a 34 | full-stack JavaScript example application project and connecting a backend 35 | API to an Angular 5 front-end application employing the MEAN stack. By the 36 | end of this Angular advanced tutorial, you will learn about the MEAN stack 37 | from scratch, including how to build a RESTful API with Loopback and using 38 | it to perform CRUD operations on a MongoDB database through an Angular 39 | frontend. 40 |
41 |