Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sylhare/nestjs

Experimentation with NestJS
https://github.com/sylhare/nestjs

Last synced: about 2 months ago
JSON representation

Experimentation with NestJS

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