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

https://github.com/jorneycr/message-app

Practice with the framework NestJS, it's a small API to consume by Postman
https://github.com/jorneycr/message-app

nestjs postman typescript

Last synced: 9 months ago
JSON representation

Practice with the framework NestJS, it's a small API to consume by Postman

Awesome Lists containing this project

README

          

## Documentation
https://docs.nestjs.com/

## Installation

```bash
$ npm install
```

## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod
```

## How to consume the app.

```bash
#Post
http://localhost:3000/mensajes

{"nick":"Dog","mensaje":"Hello from NestJS"}

#Get
http://localhost:3000/mensajes

#Put
http://localhost:3000/mensajes/1

#Delete
http://localhost:3000/mensajes/1
```