Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mahabubx7/nestjs-boilerplate
NestJS for backend application with pre-setup and configs for production grade projects
https://github.com/mahabubx7/nestjs-boilerplate
casl-permission jwt-authentication nestjs nestjs-backend nestjs-boilerplate passport-js postgresql rbac typeorm
Last synced: about 16 hours ago
JSON representation
NestJS for backend application with pre-setup and configs for production grade projects
- Host: GitHub
- URL: https://github.com/mahabubx7/nestjs-boilerplate
- Owner: mahabubx7
- License: mit
- Created: 2023-08-19T15:05:31.000Z (over 1 year ago)
- Default Branch: dev
- Last Pushed: 2023-11-23T19:12:18.000Z (about 1 year ago)
- Last Synced: 2024-11-14T14:19:28.594Z (2 months ago)
- Topics: casl-permission, jwt-authentication, nestjs, nestjs-backend, nestjs-boilerplate, passport-js, postgresql, rbac, typeorm
- Language: TypeScript
- Homepage:
- Size: 562 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- 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/nest
A progressive Node.js framework for building efficient and scalable server-side applications.
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
## Installation
```bash
$ pnpm install
```## Running the app
```bash
# development
$ pnpm run start# watch mode
$ pnpm run start:dev# production mode
$ pnpm run start:prod
```## Test
```bash
# unit tests
$ pnpm run test# e2e tests
$ pnpm run test:e2e# test coverage
$ pnpm run test:cov
```## CLI usages
Nestjs provides a rich level CLI itself. I'm using custom structure from the conventional or default. Example,
```bash
# Create new module
$ nest g mo Post modules/posts --flat
```It will create new folder `src/modules/posts` and `posts.module.ts` file inside it.
## Support
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
## Stay in touch
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)## License
Nest is [MIT licensed](LICENSE).