Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        


Angular 17 Logo
Nest Logo

[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nest

This 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
```