https://github.com/sylhare/nestjs
Experimentation with NestJS
https://github.com/sylhare/nestjs
Last synced: 4 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-29T19:16:28.000Z (11 months ago)
- Last Synced: 2025-01-14T20:21:55.709Z (6 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 [](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
```