Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wlucha/angular-nest
Angular 13 & NestJS 8 Starter Project
https://github.com/wlucha/angular-nest
angular angular-nest angular13 boilerplate jest nest nestjs ngx-admin starter starter-kit
Last synced: 2 months ago
JSON representation
Angular 13 & NestJS 8 Starter Project
- Host: GitHub
- URL: https://github.com/wlucha/angular-nest
- Owner: wlucha
- License: mit
- Created: 2020-05-26T18:42:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T11:24:35.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T06:46:36.149Z (3 months ago)
- Topics: angular, angular-nest, angular13, boilerplate, jest, nest, nestjs, ngx-admin, starter, starter-kit
- Language: TypeScript
- Homepage:
- Size: 454 KB
- Stars: 28
- Watchers: 3
- Forks: 11
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
![angular-nest](https://user-images.githubusercontent.com/7531596/82949797-813e0600-9fa4-11ea-8eaa-3101c3f0b092.png)
> Angular 13 + NestJS 8 starter projectThis is a Angular 13 (ngx-admin) + NestJS 8 boilerplate to easily start your own frontend + backend project.
![Angular13](https://img.shields.io/badge/Angular-13-brightgreen)
![NestJS8](https://img.shields.io/badge/NestJS-8-brightgreen)
[![Build](https://api.travis-ci.org/wlucha/angular-nest.svg?branch=master)](https://travis-ci.org/github/wlucha/angular-nest)
[![MIT](https://img.shields.io/packagist/l/doctrine/orm.svg)]()
[![StackShare](http://img.shields.io/badge/tech-stack-0690fa.svg?style=flat)](https://stackshare.io/wlucha/angular-nest)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=wlucha_angular-nest&metric=alert_status)](https://sonarcloud.io/dashboard?id=wlucha_angular-nest)## Features
✅ 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## Demo
- [StackBlitz Demo](https://stackblitz.com/github/wlucha/angular-nest)## Frontend App
The Angular 13 frontend app is based on the [ngx-admin](https://github.com/akveo/ngx-admin) starter kit.![image](https://user-images.githubusercontent.com/7531596/148551080-de61fdb5-ffa4-496e-a26b-4bbf9dd35e9e.png)
## Installation
```bash
# Install dependencies
$ npm install
```## Running Nest.js
```bash
# development
$ npm run start-nest# watch mode
$ npm run start-nest:dev# production mode
$ npm run start-nest:prod
```## Running Angular
```bash
# development
$ npm run start-angular# production mode
$ npm run start-angular:prod
```## Test
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```## License
MIT LicenseCopyright (c) 2023 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.