Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sylhare/nestjs
Experimentation with NestJS
https://github.com/sylhare/nestjs
Last synced: about 2 months ago
JSON representation
Experimentation with NestJS
- Host: GitHub
- URL: https://github.com/sylhare/nestjs
- Owner: sylhare
- License: mit
- Created: 2024-03-04T14:20:06.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T19:16:28.000Z (5 months ago)
- Last Synced: 2024-10-12T19:33:41.513Z (3 months ago)
- Language: TypeScript
- Size: 864 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nest JS Experimentation [![NestJS CI](https://github.com/sylhare/NestJS/actions/workflows/NestJS.yml/badge.svg)](https://github.com/sylhare/NestJS/actions/workflows/NestJS.yml)
Try creating a new NestJS project from template using: `nest new example -p npm`.
## Getting Started
Install the dependencies:
```bash
npm install
```Build the project:
```bash
npm run build
```Run the project with:
```bash
npm start
```It should be available at [localhost:3001](http://localhost:3001).
Test the project using *Jest*:
```bash
# To run all the tests
npm test
# To run the e2e tests
npm test:e2e
# To run the unit tests
npm test:unit
```Lint the project using *ESLint*:
```bash
npm run lint
# To fix the linting errors
npm run lint:fix
```