Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maestropravaler/nestjs-prisma
https://github.com/maestropravaler/nestjs-prisma
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/maestropravaler/nestjs-prisma
- Owner: MaestroPravaler
- Created: 2022-10-08T20:49:09.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-08T21:00:49.000Z (about 2 years ago)
- Last Synced: 2023-08-27T04:26:16.816Z (about 1 year ago)
- Language: TypeScript
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nest## Descrição
Realização de um crud Simples para a fixação de conhecimentos em NestJS e Prisma..
## Para Rodar o Projeto
```bash
$ npm run start:dev
```## Verificação das funcionalidades com o Postman
1. Criar um Registro (METODO: POST) - http://localhost:3000/books
```json
{
"title" : "Domain Driven Design",
"description": "Livro destinado a quem deseja aprender DDD",
"bar_code": "43553456123212765435"
}
```2. Listar todos os Registros (METODO: GET) - http://localhost:3000/books
3. Atualizar um Registro (METODO: PUT) - http://localhost:3000/books/{{:id}}
```json
{
"title" : "Domain Driven Design (Alterado)",
"description": "Livro destinado a quem deseja aprender DDD",
"bar_code": "43553456123212765435"
}
```4. Deletar um Registro (METODO: DELETE) - http://localhost:3000/books/{{:id}}