zhouzx9999 / ng-adminx

NG Admin theme is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM. The product represents a big suite of front-end developer tools that can help you jump start your project. We have created it thinking about things you actually need in a dashboard. Light Bootstrap Dashboard Angular 2 contains multiple handpicked and optimized plugins. Everything is designed to fit with one another. As you will be able to see, the dashboard you can access on Creative Tim is a customization of this product. ## Terminal Commands 1. Install NodeJs from [NodeJs Official Page](https://nodejs.org/en). 2. Open Terminal 3. Go to your file project 4. Run in terminal: ```npm install -g @angular/cli``` 5. Then: ```npm install``` 6. And: ```ng serve``` 7. Navigate to `http://localhost:4200/` ### What's included Within the download you'll find the following directories and files: ``` NG ADMIn ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── angular.json ├── documentation │   ├── css │   └── tutorial-lbd-angular2.html ├── e2e ├── karma.conf.js ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │   ├── app │   │   ├── app.component.css │   │   ├── app.component.html │   │   ├── app.component.spec.ts │   │   ├── app.component.ts │   │   ├── app.module.ts │   │   ├── app.routing.ts │   │   ├── home │   │   │   ├── home.component.css │   │   │   ├── home.component.html │   │   │   ├── home.component.spec.ts │   │   │   └── home.component.ts │   │   ├── icons │   │   │   ├── icons.component.css │   │   │   ├── icons.component.html │   │   │   ├── icons.component.spec.ts │   │   │   └── icons.component.ts │   │   ├── layouts │   │   │   └── admin-layout │   │   │   ├── admin-layout.component.html │   │   │   ├── admin-layout.component.scss │   │   │   ├── admin-layout.component.spec.ts │   │   │   ├── admin-layout.component.ts │   │   │   ├── admin-layout.module.ts │   │   │   └── admin-layout.routing.ts │   │   ├── lbd │   │   │   ├── lbd-chart │   │   │   │   ├── lbd-chart.component.html │   │   │   │   └── lbd-chart.component.ts │   │   │   └── lbd.module.ts │   │   ├── maps │   │   │   ├── maps.component.css │   │   │   ├── maps.component.html │   │   │   ├── maps.component.spec.ts │   │   │   └── maps.component.ts │   │   ├── notifications │   │   │   ├── notifications.component.css │   │   │   ├── notifications.component.html │   │   │   ├── notifications.component.spec.ts │   │   │   └── notifications.component.ts │   │   ├── shared │   │   │   ├── footer │   │   │   │   ├── footer.component.html │   │   │   │   ├── footer.component.ts │   │   │   │   └── footer.module.ts │   │   │   └── navbar │   │   │   ├── navbar.component.html │   │   │   ├── navbar.component.ts │   │   │   └── navbar.module.ts │   │   ├── sidebar │   │   │   ├── sidebar.component.html │   │   │   ├── sidebar.component.ts │   │   │   └── sidebar.module.ts │   │   ├── tables │   │   │   ├── tables.component.css │   │   │   ├── tables.component.html │   │   │   ├── tables.component.spec.ts │   │   │   └── tables.component.ts │   │   ├── typography │   │   │   ├── typography.component.css │   │   │   ├── typography.component.html │   │   │   ├── typography.component.spec.ts │   │   │   └── typography.component.ts │   │   ├── upgrade │   │   │   ├── upgrade.component.css │   │   │   ├── upgrade.component.html │   │   │   ├── upgrade.component.spec.ts │   │   │   └── upgrade.component.ts │   │   └── user │   │   ├── user.component.css │   │   ├── user.component.html │   │   ├── user.component.spec.ts │   │   └── user.component.ts │   ├── assets │   │   ├── css │   │   ├── fonts │   │   ├── img │   │   └── sass │   │   ├── lbd │   │   └── light-bootstrap-dashboard.scss │   ├── environments │   ├── favicon.ico │   ├── index.html │   ├── main.ts │   ├── polyfills.ts │   ├── styles.css │   ├── test.ts │   └── tsconfig.json ├── tslint.json └── typings.json ``` ## Useful Links Website: <https://amjayesh07.github.io/> Social Media: Stack-overflow: <https://stackoverflow.com/users/5912568/amjayesh07> Github: <https://github.com/amjayesh07> LinkedIn: <https://in.linkedin.com/in/amjayesh07> Behance: <https://www.behance.net/amjayesh07> Instagram: <https://www.instagram.com/amjayesh07/> [CHANGELOG]: ./CHANGELOG.md

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NG Admin theme is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM.

The product represents a big suite of front-end developer tools that can help you jump start your project. We have created it thinking about things you actually need in a dashboard. Light Bootstrap Dashboard Angular 2 contains multiple handpicked and optimized plugins. Everything is designed to fit with one another. As you will be able to see, the dashboard you can access on Creative Tim is a customization of this product.

Terminal Commands

  1. Install NodeJs from NodeJs Official Page.
  2. Open Terminal
  3. Go to your file project
  4. Run in terminal: npm install -g @angular/cli
  5. Then: npm install
  6. And: ng serve
  7. Navigate to http://localhost:4200/

What's included

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

NG ADMIn
├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── angular.json
├── documentation
│   ├── css
│   └── tutorial-lbd-angular2.html
├── e2e
├── karma.conf.js
├── package-lock.json
├── package.json
├── protractor.conf.js
├── src
│   ├── app
│   │   ├── app.component.css
│   │   ├── app.component.html
│   │   ├── app.component.spec.ts
│   │   ├── app.component.ts
│   │   ├── app.module.ts
│   │   ├── app.routing.ts
│   │   ├── home
│   │   │   ├── home.component.css
│   │   │   ├── home.component.html
│   │   │   ├── home.component.spec.ts
│   │   │   └── home.component.ts
│   │   ├── icons
│   │   │   ├── icons.component.css
│   │   │   ├── icons.component.html
│   │   │   ├── icons.component.spec.ts
│   │   │   └── icons.component.ts
│   │   ├── layouts
│   │   │   └── admin-layout
│   │   │       ├── admin-layout.component.html
│   │   │       ├── admin-layout.component.scss
│   │   │       ├── admin-layout.component.spec.ts
│   │   │       ├── admin-layout.component.ts
│   │   │       ├── admin-layout.module.ts
│   │   │       └── admin-layout.routing.ts
│   │   ├── lbd
│   │   │   ├── lbd-chart
│   │   │   │   ├── lbd-chart.component.html
│   │   │   │   └── lbd-chart.component.ts
│   │   │   └── lbd.module.ts
│   │   ├── maps
│   │   │   ├── maps.component.css
│   │   │   ├── maps.component.html
│   │   │   ├── maps.component.spec.ts
│   │   │   └── maps.component.ts
│   │   ├── notifications
│   │   │   ├── notifications.component.css
│   │   │   ├── notifications.component.html
│   │   │   ├── notifications.component.spec.ts
│   │   │   └── notifications.component.ts
│   │   ├── shared
│   │   │   ├── footer
│   │   │   │   ├── footer.component.html
│   │   │   │   ├── footer.component.ts
│   │   │   │   └── footer.module.ts
│   │   │   └── navbar
│   │   │       ├── navbar.component.html
│   │   │       ├── navbar.component.ts
│   │   │       └── navbar.module.ts
│   │   ├── sidebar
│   │   │   ├── sidebar.component.html
│   │   │   ├── sidebar.component.ts
│   │   │   └── sidebar.module.ts
│   │   ├── tables
│   │   │   ├── tables.component.css
│   │   │   ├── tables.component.html
│   │   │   ├── tables.component.spec.ts
│   │   │   └── tables.component.ts
│   │   ├── typography
│   │   │   ├── typography.component.css
│   │   │   ├── typography.component.html
│   │   │   ├── typography.component.spec.ts
│   │   │   └── typography.component.ts
│   │   ├── upgrade
│   │   │   ├── upgrade.component.css
│   │   │   ├── upgrade.component.html
│   │   │   ├── upgrade.component.spec.ts
│   │   │   └── upgrade.component.ts
│   │   └── user
│   │       ├── user.component.css
│   │       ├── user.component.html
│   │       ├── user.component.spec.ts
│   │       └── user.component.ts
│   ├── assets
│   │   ├── css
│   │   ├── fonts
│   │   ├── img
│   │   └── sass
│   │       ├── lbd
│   │       └── light-bootstrap-dashboard.scss
│   ├── environments
│   ├── favicon.ico
│   ├── index.html
│   ├── main.ts
│   ├── polyfills.ts
│   ├── styles.css
│   ├── test.ts
│   └── tsconfig.json
├── tslint.json
└── typings.json

Useful Links

Website: https://amjayesh07.github.io/

Social Media:

Stack-overflow: https://stackoverflow.com/users/5912568/amjayesh07

Github: https://github.com/amjayesh07

LinkedIn: https://in.linkedin.com/in/amjayesh07

Behance: https://www.behance.net/amjayesh07

Instagram: https://www.instagram.com/amjayesh07/

About

NG Admin theme is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM. The product represents a big suite of front-end developer tools that can help you jump start your project. We have created it thinking about things you actually need in a dashboard. Light Bootstrap Dashboard Angular 2 contains multiple handpicked and optimized plugins. Everything is designed to fit with one another. As you will be able to see, the dashboard you can access on Creative Tim is a customization of this product. ## Terminal Commands 1. Install NodeJs from [NodeJs Official Page](https://nodejs.org/en). 2. Open Terminal 3. Go to your file project 4. Run in terminal: ```npm install -g @angular/cli``` 5. Then: ```npm install``` 6. And: ```ng serve``` 7. Navigate to `http://localhost:4200/` ### What's included Within the download you'll find the following directories and files: ``` NG ADMIn ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── angular.json ├── documentation │   ├── css │   └── tutorial-lbd-angular2.html ├── e2e ├── karma.conf.js ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │   ├── app │   │   ├── app.component.css │   │   ├── app.component.html │   │   ├── app.component.spec.ts │   │   ├── app.component.ts │   │   ├── app.module.ts │   │   ├── app.routing.ts │   │   ├── home │   │   │   ├── home.component.css │   │   │   ├── home.component.html │   │   │   ├── home.component.spec.ts │   │   │   └── home.component.ts │   │   ├── icons │   │   │   ├── icons.component.css │   │   │   ├── icons.component.html │   │   │   ├── icons.component.spec.ts │   │   │   └── icons.component.ts │   │   ├── layouts │   │   │   └── admin-layout │   │   │   ├── admin-layout.component.html │   │   │   ├── admin-layout.component.scss │   │   │   ├── admin-layout.component.spec.ts │   │   │   ├── admin-layout.component.ts │   │   │   ├── admin-layout.module.ts │   │   │   └── admin-layout.routing.ts │   │   ├── lbd │   │   │   ├── lbd-chart │   │   │   │   ├── lbd-chart.component.html │   │   │   │   └── lbd-chart.component.ts │   │   │   └── lbd.module.ts │   │   ├── maps │   │   │   ├── maps.component.css │   │   │   ├── maps.component.html │   │   │   ├── maps.component.spec.ts │   │   │   └── maps.component.ts │   │   ├── notifications │   │   │   ├── notifications.component.css │   │   │   ├── notifications.component.html │   │   │   ├── notifications.component.spec.ts │   │   │   └── notifications.component.ts │   │   ├── shared │   │   │   ├── footer │   │   │   │   ├── footer.component.html │   │   │   │   ├── footer.component.ts │   │   │   │   └── footer.module.ts │   │   │   └── navbar │   │   │   ├── navbar.component.html │   │   │   ├── navbar.component.ts │   │   │   └── navbar.module.ts │   │   ├── sidebar │   │   │   ├── sidebar.component.html │   │   │   ├── sidebar.component.ts │   │   │   └── sidebar.module.ts │   │   ├── tables │   │   │   ├── tables.component.css │   │   │   ├── tables.component.html │   │   │   ├── tables.component.spec.ts │   │   │   └── tables.component.ts │   │   ├── typography │   │   │   ├── typography.component.css │   │   │   ├── typography.component.html │   │   │   ├── typography.component.spec.ts │   │   │   └── typography.component.ts │   │   ├── upgrade │   │   │   ├── upgrade.component.css │   │   │   ├── upgrade.component.html │   │   │   ├── upgrade.component.spec.ts │   │   │   └── upgrade.component.ts │   │   └── user │   │   ├── user.component.css │   │   ├── user.component.html │   │   ├── user.component.spec.ts │   │   └── user.component.ts │   ├── assets │   │   ├── css │   │   ├── fonts │   │   ├── img │   │   └── sass │   │   ├── lbd │   │   └── light-bootstrap-dashboard.scss │   ├── environments │   ├── favicon.ico │   ├── index.html │   ├── main.ts │   ├── polyfills.ts │   ├── styles.css │   ├── test.ts │   └── tsconfig.json ├── tslint.json └── typings.json ``` ## Useful Links Website: <https://amjayesh07.github.io/> Social Media: Stack-overflow: <https://stackoverflow.com/users/5912568/amjayesh07> Github: <https://github.com/amjayesh07> LinkedIn: <https://in.linkedin.com/in/amjayesh07> Behance: <https://www.behance.net/amjayesh07> Instagram: <https://www.instagram.com/amjayesh07/> [CHANGELOG]: ./CHANGELOG.md

License:MIT License


Languages

Language:HTML 46.0%Language:CSS 39.3%Language:TypeScript 13.9%Language:JavaScript 0.8%