Prerequisite
- Node.js and NPM : You can download Node.js from https://nodejs.org. NPM comes bundled with Node.js.
- Angular Cli : You can install angular-cli using following
command
install -g @angular/cli - Choose Template: As per your choice choose template and move to
mainorstarterdirectory in your terminal and execute following commands. - Install dependency : After installing Node and npm run
npm installcommand from the root of your project directory into terminal. It will install all the necessary dependencies for the application using package.json file. - Run Project: Run
ng servecommand from your terminal in project directory, and navigate to http://localhost:4200/ into your browser. - Build Project: For build project execute command
ng buildfrom terminal in project directory. Sodistfolder is generated in project directory.
Installation
Installation Guide
After download package you can see multiple template options like
main or starter choose your desire template.
- Go to your
root directory like
main or starter - Run
ng buildfor build project. distdirectory is generated, just copy it in your location.
Note: we suggest you to write your scss code in
custom.scss file, so whenever the update of
admin template comes, you have to just replace custom.scss file, it does not affect
your code.