Quick Start

1. Requirements

Before proceeding, you need to have the latest stable node.js
Recommended environment:
  • node js 20+
  • npm js 10+

2. Install

Open package folder and install its dependencies. We recommended yarn or npm.
1) Install with npm:
                                  
cd project-folder
npm install
                                  
                              
2) Install with yarn:
                                  
cd project-folder
yarn install
                                  
                              

3. Start

Once npm install is done now you an run the app.
                                  
ng serve -o
                                  
                              
This command will start a local webserver http://localhost:4200:
                                  
Initial chunk files               | Names                 |  Raw size
main.js                           | main                  | 124.52 kB |
styles.css                        | styles                | 122.48 kB |
polyfills.js                      | polyfills             |  90.20 kB |
chunk-EPFQZFJ3.js                 | -                     |  42.79 kB |
chunk-6XS54CRB.js                 | -                     |   3.63 kB |
chunk-KIZ4YIJC.js                 | -                     |   1.66 kB |
chunk-X7GAXGAG.js                 | -                     |   1.27 kB |
chunk-VUJOFXKG.js                 | -                     | 938 bytes |

                                  | Initial total         | 387.49 kB

Lazy chunk files                  | Names                 |  Raw size
apps.routes-SD3OFR2B.js           | apps-routes           | 592.55 kB |
forms.routes-QIH5MKNQ.js          | forms-routes          | 430.16 kB |
ui-components.routes-Y3XMG6ZX.js  | ui-components-routes  | 393.37 kB |
tables.routes-PMZV7Q2F.js         | tables-routes         | 334.43 kB |
dashboards.routes-WMVQCMES.js     | dashboards-routes     | 127.99 kB |
widgets.routes-DJPTLUXX.js        | widgets-routes        |  88.94 kB |
charts.routes-RK4JT57K.js         | charts-routes         |  87.31 kB |
authentication.routes-BXFBLFCT.js | authentication-routes |  68.45 kB |
theme-pages.routes-KHABTJK4.js    | theme-pages-routes    |  61.99 kB |
landingpage.routes-7HHGGPB2.js    | landingpage-routes    |  41.99 kB |
datatable.routes-W5U4B4LQ.js      | datatable-routes      |  35.49 kB |
pages.routes-TU5ZQLBT.js          | pages-routes          |   2.98 kB |
chunk-MBJBNJ2F.js                 | -                     |   2.76 kB |

Application bundle generation complete. [33.662 seconds]
➜  Local:   http://localhost:4200/
➜  press h + enter to show help
                                  
                              

4. Build / Deployment

After adding url run below command for build a app.
                                  
ng build
                                  
                              
Finally, Your app is ready to be deployed.🥳