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
- Host: GitHub
- URL: https://github.com/jorneycr/message-app
- Owner: jorneycr
- Created: 2021-06-30T05:08:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-19T06:27:26.000Z (over 4 years ago)
- Last Synced: 2025-03-29T12:47:01.506Z (12 months ago)
- Topics: nestjs, postman, typescript
- Language: TypeScript
- Homepage:
- Size: 271 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```