Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hrithiqball/angular-nest
Full stack web application using Angular 17 and Nestjs
https://github.com/hrithiqball/angular-nest
angular17 docker eslint nestjs prettier ssr tailwindcss
Last synced: 24 days ago
JSON representation
Full stack web application using Angular 17 and Nestjs
- Host: GitHub
- URL: https://github.com/hrithiqball/angular-nest
- Owner: hrithiqball
- License: mit
- Created: 2023-12-06T09:28:11.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2023-12-15T03:23:06.000Z (11 months ago)
- Last Synced: 2024-10-02T08:47:25.920Z (about 1 month ago)
- Topics: angular17, docker, eslint, nestjs, prettier, ssr, tailwindcss
- Language: HTML
- Homepage:
- Size: 239 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nestThis boilerplate is to setup a new full stack Angular and Nest project with the following features:
- server side rendering
- tailwindcss
- eslint
- prettier
- docker (not implemented yet)
- file structure## Angular app
```bash
# development
ng serve
# build
ng build
# test
ng test
# e2e test
ng e2e# generate component
ng generate component component-name # (ng g c component-name)ng generate directive|pipe|service|class|guard|interface|enum|module
```## Nest app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```