Giter VIP home page Giter VIP logo

pankajkadam333 / angular-material-template Goto Github PK

View Code? Open in Web Editor NEW

This project forked from umutesen/angular-material-template

0.0 0.0 0.0 14.46 MB

Responsive Angular Material admin application template built on top of Angular, Angular Material and other open-source libraries.

Home Page: https://onthecode.co.uk/product/angular-material-template/

License: MIT License

JavaScript 2.89% TypeScript 66.00% CSS 5.99% HTML 25.12%

angular-material-template's Introduction

Build status

Product Gif

Angular Material Application Template is a free template built with Angular 8 and Angular Material 8. You can use it out of the box without having to change any file paths. Everything you need to start development on an Angular 8 project is here.

Angular Material starter template has been built with the official style guide in mind, which means it promotes a clean folder structure and separation of concerns. The material template is fully responsive and contains the fundamental building blocks of a scalable Angular application:

  • Login component
  • Password reset component
  • Responsive Admin dashboard with sidebar
  • Account area with change password component
  • Log out
  • All Angular Material components

In addition to Angular 8, other well-known open-source libraries such as rxjs, moment and ngx-logger are also included.

This application template came as a result of several applications that we have developed over the past few years. We have always used Angular Material components and wanted to create a starter template to save time for greenfield projects. We developed it based on user feedback and it is a powerful Angular admin dashboard, which allows you to build products like admin panels, content management systems (CMS) and customer relationship management (CRM) software.

Starter Template Features

  • Clean folder structure
  • Core module
  • Shared module
  • Example feature modules
  • Lazy-loaded feature modules
  • Global error-handling
  • Error logging with ngx-logger (logging to browser & remote API)
  • HTTP Interceptors to inject JWT-tokens Authentication and role guards (for Role-based access)
  • Shows spinner for all HTTP requests
  • Angular flex layout

Table of Contents

Demo

View Demo

Quick start

Start by downloading the template from one of these locations:

This project was generated with Angular CLI and currently uses version 8.x and Angular 8.x.

Follow the steps below to start using the template.

  1. Install NodeJS from NodeJs Official Page.
  2. Open Terminal (Download Git Bash for Windows or use cmd)
  3. Go to your file project
  4. Make sure you have installed Angular CLI already. If not, please install.
  5. Run in terminal: npm install
  6. Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
  7. Use your favourite IDE to rebrand the project. Just search and replace all occurances of angular-material-template with your project name.

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

Supported Browsers

At present, we officially aim to support the last two versions of the following browsers:

What's included

Within the download you'll find the following directories and files:

├── LICENSE
├── README.md
├── angular.json
├── e2e
├── package-lock.json
├── package.json
├── src
│   ├── app
│   │   ├── about
│   │   │   ├── about-home
│   │   │   │   ├── about-home.component.css
│   │   │   │   ├── about-home.component.html
│   │   │   │   ├── about-home.component.spec.ts
│   │   │   │   └── about-home.component.ts
│   │   │   ├── about-routing.module.ts
│   │   │   └── about.module.ts
│   │   ├── account
│   │   │   ├── account-routing.module.ts
│   │   │   ├── account.module.ts
│   │   │   ├── change-password
│   │   │   │   ├── change-password.component.css
│   │   │   │   ├── change-password.component.html
│   │   │   │   └── change-password.component.ts
│   │   │   ├── profile
│   │   │   │   ├── profile.component.css
│   │   │   │   ├── profile.component.html
│   │   │   │   └── profile.component.ts
│   │   │   └── profile-details
│   │   │       ├── profile-details.component.css
│   │   │       ├── profile-details.component.html
│   │   │       └── profile-details.component.ts
│   │   ├── app-routing.module.ts
│   │   ├── app.component.ts
│   │   ├── app.module.ts
│   │   ├── auth
│   │   │   ├── auth-routing.module.ts
│   │   │   ├── auth.module.ts
│   │   │   ├── login
│   │   │   │   ├── login.component.css
│   │   │   │   ├── login.component.html
│   │   │   │   └── login.component.ts
│   │   │   ├── password-reset
│   │   │   │   ├── password-reset.component.css
│   │   │   │   ├── password-reset.component.html
│   │   │   │   └── password-reset.component.ts
│   │   │   └── password-reset-request
│   │   │       ├── password-reset-request.component.css
│   │   │       ├── password-reset-request.component.html
│   │   │       └── password-reset-request.component.ts
│   │   ├── core
│   │   │   ├── core.module.ts
│   │   │   ├── guards
│   │   │   │   ├── admin.guard.spec.ts
│   │   │   │   ├── admin.guard.ts
│   │   │   │   ├── auth.guard.spec.ts
│   │   │   │   ├── auth.guard.ts
│   │   │   │   └── module-import.guard.ts
│   │   │   ├── interceptors
│   │   │   │   ├── auth.interceptor.ts
│   │   │   │   └── spinner.interceptor.ts
│   │   │   └── services
│   │   │       ├── auth.service.ts
│   │   │       ├── globar-error.handler.ts
│   │   │       ├── notification.service.ts
│   │   │       ├── spinner.service.spec.ts
│   │   │       └── spinner.service.ts
│   │   ├── custom-material
│   │   │   ├── custom-material.module.ts
│   │   │   └── select-check-all
│   │   │       ├── select-check-all.component.css
│   │   │       ├── select-check-all.component.html
│   │   │       └── select-check-all.component.ts
│   │   ├── customers
│   │   │   ├── customer-list
│   │   │   │   ├── customer-list.component.css
│   │   │   │   ├── customer-list.component.html
│   │   │   │   └── customer-list.component.ts
│   │   │   ├── customers-routing.module.ts
│   │   │   └── customers.module.ts
│   │   ├── dashboard
│   │   │   ├── dashboard-home
│   │   │   │   ├── dashboard-home.component.css
│   │   │   │   ├── dashboard-home.component.html
│   │   │   │   └── dashboard-home.component.ts
│   │   │   ├── dashboard-routing.module.ts
│   │   │   └── dashboard.module.ts
│   │   ├── icons
│   │   │   ├── icons
│   │   │   │   ├── icons.component.css
│   │   │   │   ├── icons.component.html
│   │   │   │   ├── icons.component.spec.ts
│   │   │   │   └── icons.component.ts
│   │   │   ├── icons-routing.module.ts
│   │   │   └── icons.module.ts
│   │   ├── shared
│   │   │   ├── confirm-dialog
│   │   │   │   ├── confirm-dialog.component.css
│   │   │   │   ├── confirm-dialog.component.html
│   │   │   │   └── confirm-dialog.component.ts
│   │   │   ├── content-placeholder-animation
│   │   │   │   ├── content-placeholder-animation.component.css
│   │   │   │   ├── content-placeholder-animation.component.html
│   │   │   │   └── content-placeholder-animation.component.ts
│   │   │   ├── footer
│   │   │   ├── layout
│   │   │   │   ├── layout.component.css
│   │   │   │   ├── layout.component.html
│   │   │   │   └── layout.component.ts
│   │   │   ├── mocks
│   │   │   │   └── spinner-consumer.ts
│   │   │   ├── pipes
│   │   │   │   ├── limit-to.pipe.spec.ts
│   │   │   │   ├── limit-to.pipe.ts
│   │   │   │   ├── local-date.pipe.spec.ts
│   │   │   │   ├── local-date.pipe.ts
│   │   │   │   ├── yes-no.pipe.spec.ts
│   │   │   │   └── yes-no.pipe.ts
│   │   │   ├── shared.module.ts
│   │   │   └── validators
│   │   │       └── autocompleteSelectionValidator.ts
│   │   ├── typography
│   │   │   ├── typography
│   │   │   │   ├── typography.component.css
│   │   │   │   ├── typography.component.html
│   │   │   │   ├── typography.component.spec.ts
│   │   │   │   └── typography.component.ts
│   │   │   ├── typography-routing.module.ts
│   │   │   └── typography.module.ts
│   │   └── users
│   │       ├── user-list
│   │       │   ├── user-list.component.css
│   │       │   ├── user-list.component.html
│   │       │   └── user-list.component.ts
│   │       ├── users-routing.module.ts
│   │       └── users.module.ts
│   ├── assets
│   │   ├── favicon
│   │   └── user.png
│   ├── browserslist
│   ├── environments
│   │   ├── environment.prod.ts
│   │   └── environment.ts
│   ├── index.html
│   ├── karma.conf.js
│   ├── main.ts
│   ├── polyfills.ts
│   ├── styles.css
│   ├── test.ts
│   ├── tsconfig.app.json
│   ├── tsconfig.spec.json
│   └── tslint.json
├── tsconfig.json
└── tslint.json

Resources

Technical Help

We use GitHub Issues as the official bug tracker for this template. Here are some advices for our users that want to report an issue:

  1. Make sure that you are using the latest version of the template.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

If you have questions or need help integrating the product please contact us instead of opening an issue.

Licensing

angular-material-template's People

Contributors

dependabot[bot] avatar ryanoc avatar umutesen avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.