Angular 13 + NestJS 8 starter project
This is a Angular 13 (ngx-admin) + NestJS 8 boilerplate to easily start your own frontend + backend project.
✅ Angular 13+
- a JS frontend framework created by Google
- https://angular.io/
✅ NestJS 8+
- a JS backend framework providing architecture out of the box with a syntax similar to Angular
- https://nestjs.com/
✅ Jest Unit Testing
- a delightful JavaScript Testing Framework with a focus on simplicity
- https://jestjs.io/
✅ Ngx-admin
- Customizable admin dashboard template based on Angular 13+
- https://github.com/akveo/ngx-admin
The Angular 13 frontend app is based on the ngx-admin starter kit.
# Install dependencies
$ npm install
# development
$ npm run start-nest
# watch mode
$ npm run start-nest:dev
# production mode
$ npm run start-nest:prod
# development
$ npm run start-angular
# production mode
$ npm run start-angular:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
MIT License
Copyright (c) 2022 Wilfried Lucha
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.