Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gustavo-martins-pereira/pokedex-express_and_postgress
A pokemon record using a CRUD with MongoDB and Express
https://github.com/gustavo-martins-pereira/pokedex-express_and_postgress
api css css3 ejs express html html5 javascript mongodb mongodb-database nodejs postgres postgresql rest rest-api
Last synced: about 4 hours ago
JSON representation
A pokemon record using a CRUD with MongoDB and Express
- Host: GitHub
- URL: https://github.com/gustavo-martins-pereira/pokedex-express_and_postgress
- Owner: gustavo-martins-pereira
- Created: 2022-10-28T16:16:38.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T16:06:31.000Z (almost 2 years ago)
- Last Synced: 2024-02-29T21:59:47.041Z (9 months ago)
- Topics: api, css, css3, ejs, express, html, html5, javascript, mongodb, mongodb-database, nodejs, postgres, postgresql, rest, rest-api
- Language: JavaScript
- Homepage:
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# API REST de Pokemons com NodeJS + Postgres + Docker
Este projeto foi feito em um servidor NodeJS utilizando API's para acessar um banco de dados postgres através de um container Docker.
## Instalação
Em algum terminal, digite o comando:
`docker run -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 postgres`
Para inicializar o container Docker com o postgres. Em seguida, acesse o db no DBeaver por exemploo, com os dados:
* host: localhost
* port: 5432
* database: postgres
* username: postgres
* password: postgresE execute o [SQL para executar a estrutura base do banco](./scripts/Create%20Table.sql):
```sql
create table pokemons (
id serial primary key,
name varchar(30) not null,
atk int not null,
def int not null
);insert into pokemons (name, atk, def) values
('Bulbasaur', 14, 10),
('Venusaur', 17, 15);
```Em seguida, no terminal da pasta do projeto, digite:
`npm install` e logo após `npm run start:dev`.
## URL's da API
Em seguida basta fazer as requisições através das seguintes URL's:
Caso você tenha o [Postman](https://www.postman.com/), baixe o [arquivo para as requisições](scripts/Pokemons%20NodeJS.postman_collection.json);
Para as requisições que precisarem de um body:
```json
{
"name": "NOME",
"atk": INT,
"def": INT
}
```* GET - Todos os pokemons: http://localhost:8080/pokemons.
* GET - Pega um pokemon informando um id específico: http://localhost:8080/pokemons/{id}.
* POST - Inclui um pokemon: http://localhost:8080/pokemons - Necessário informar um body.
* PUT - Edita um pokemon informando um id: http://localhost:8080/pokemons/{id} - Necessário informar um body.
* DELETE - Deleta um pokemon informando um id: http://localhost:8080/pokemons/{id}.v