Git Product home page Git Product logo

pokemons-api's Introduction

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications

NPM Version Package License NPM Downloads CircleCI Coverage Discord Backers on Open Collective Sponsors on Open Collective Support us

Description

This is the App Pokemons API which allows maintain the list of Pokemons, based on the CSV file located at https://gist.github.com/armgilles/194bcff35001e7eb53a2a8b441e8b2c6

Users need to create an account and sign in to have access to the API.

Please see the topic #How To

See it running at Heroku

Installation

$ npm install

Environment Variables

  • The database used is PostgreSQL
  • Running on the development environment, it is necessary to change the DATABASE_URL located in the file:
src/environment 
	.env.stage.dev

DATABASE_URL=postgres://postgres:postgres@localhost:5432/pokemons 
Current value:
	user......: postgres 
	password..: postgres 
	host......: localhost 
	port......: 5432
	database..: pokemons
  • Just create the database pokemons.
  • The NestJs framework is configured to auto-refresh and create the database struct at the start by the use of TypeORM.
  • However, if necessary, here is the database script for creation:
CREATE TABLE public."user" (
	username varchar NOT NULL,
	"password" varchar NOT NULL,
	id serial NOT NULL,
	CONSTRAINT "PK_cace4a159ff9f2512dd42373760" PRIMARY KEY (id),
	CONSTRAINT "UQ_78a916df40e02a9deb1c4b75edb" UNIQUE (username)
);

CREATE TABLE public.pokemon (
	id serial NOT NULL,
	number int4 NOT NULL,
	"name" varchar NOT NULL,
	type_1 varchar NOT NULL,
	type_2 varchar NOT NULL,
	total int4 NOT NULL,
	hp int4 NOT NULL,
	attack int4 NOT NULL,
	defense int4 NOT NULL,
	sp_atk int4 NOT NULL,
	sp_def int4 NOT NULL,
	speed int4 NOT NULL,
	generation int4 NOT NULL,
	legendary bool NOT NULL,
	CONSTRAINT "PK_0b503db1369f46c43f8da0a6a0a" PRIMARY KEY (id)
);

Running the app

# development (localhost)
$ npm run start:dev
http://localhost:3000/api/

How To

To Acquire your authentication credentials, it is necessary:

  1. Create an user account using the auth/signup operation:
{
  "username": "pedro",
  "password": "superPassword123"
}
  • Call example:
curl -X 'POST' \
  'https://pokemons-api-nestjs.herokuapp.com/auth/signup' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -d '{
  "username": "pedro",
  "password": "superPassword123"
}'
  1. Perform the signin using the auth/signin operation:
{
  "username": "pedro",
  "password": "superPassword123"
}
  • Call example:
curl -X 'POST' \
  'https://pokemons-api-nestjs.herokuapp.com/auth/signin' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -d '{
  "username": "pedro",
  "password": "superPassword123"
}'
  • The API will give you an Access Token (JWT):
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Im5hamliIiwiaWF0IjoxNjMzMzExOTQ0LCJleHAiOjE2MzMzMTU1NDR9.-b5KVUmbj-NRP4WFP1ofE44LMCZFoOVCroBPz39BLTo"
}
  1. Now to perform any Pokemon API operation it is necessary to inform the given Access Token (JWT) over the Authorization option:
curl -X 'GET' \
 'https://pokemons-api-nestjs.herokuapp.com/pokemons?search=&page=1&limit=10' \
 -H 'accept: _/_' \
 -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Im5hamliIiwiaWF0IjoxNjMzMzExOTQ0LCJleHAiOjE2MzMzMTU1NDR9.-b5KVUmbj-NRP4WFP1ofE44LMCZFoOVCroBPz39BLTo'
  • Like the example below, the returned data will always be paginated.
{
   "items":[
      {
         "id":1,
         "number":1,
         "name":"Bulbasaur",
         "type_1":"Grass",
         "type_2":"Poison",
         "total":318,
         "hp":45,
         "attack":49,
         "defense":49,
         "sp_atk":65,
         "sp_def":65,
         "speed":45,
         "generation":1,
         "legendary":false
      },
      {
         "id":8,
         "number":2,
         "name":"Ivysaur",
         "type_1":"Grass",
         "type_2":"Poison",
         "total":405,
         "hp":60,
         "attack":62,
         "defense":63,
         "sp_atk":80,
         "sp_def":80,
         "speed":60,
         "generation":1,
         "legendary":false
      },
      {
         "id":7,
         "number":3,
         "name":"Venusaur",
         "type_1":"Grass",
         "type_2":"Poison",
         "total":525,
         "hp":80,
         "attack":82,
         "defense":83,
         "sp_atk":100,
         "sp_def":100,
         "speed":80,
         "generation":1,
         "legendary":false
      },
      {
         "id":6,
         "number":3,
         "name":"VenusaurMega Venusaur",
         "type_1":"Grass",
         "type_2":"Poison",
         "total":625,
         "hp":80,
         "attack":100,
         "defense":123,
         "sp_atk":122,
         "sp_def":120,
         "speed":80,
         "generation":1,
         "legendary":false
      },
      {
         "id":4,
         "number":4,
         "name":"Charmander",
         "type_1":"Fire",
         "type_2":"",
         "total":309,
         "hp":39,
         "attack":52,
         "defense":43,
         "sp_atk":60,
         "sp_def":50,
         "speed":65,
         "generation":1,
         "legendary":false
      },
      {
         "id":2,
         "number":5,
         "name":"Charmeleon",
         "type_1":"Fire",
         "type_2":"",
         "total":405,
         "hp":58,
         "attack":64,
         "defense":58,
         "sp_atk":80,
         "sp_def":65,
         "speed":80,
         "generation":1,
         "legendary":false
      },
      {
         "id":3,
         "number":6,
         "name":"Charizard",
         "type_1":"Fire",
         "type_2":"Flying",
         "total":534,
         "hp":78,
         "attack":84,
         "defense":78,
         "sp_atk":109,
         "sp_def":85,
         "speed":100,
         "generation":1,
         "legendary":false
      },
      {
         "id":9,
         "number":6,
         "name":"CharizardMega Charizard X",
         "type_1":"Fire",
         "type_2":"Dragon",
         "total":634,
         "hp":78,
         "attack":130,
         "defense":111,
         "sp_atk":130,
         "sp_def":85,
         "speed":100,
         "generation":1,
         "legendary":false
      },
      {
         "id":5,
         "number":6,
         "name":"CharizardMega Charizard Y",
         "type_1":"Fire",
         "type_2":"Flying",
         "total":634,
         "hp":78,
         "attack":104,
         "defense":78,
         "sp_atk":159,
         "sp_def":115,
         "speed":100,
         "generation":1,
         "legendary":false
      },
      {
         "id":10,
         "number":7,
         "name":"Squirtle",
         "type_1":"Water",
         "type_2":"",
         "total":314,
         "hp":44,
         "attack":48,
         "defense":65,
         "sp_atk":50,
         "sp_def":64,
         "speed":43,
         "generation":1,
         "legendary":false
      }
   ],
   "meta":{
      "totalItems":800,
      "itemCount":10,
      "itemsPerPage":10,
      "totalPages":80,
      "currentPage":1
   }
}

pokemons-api's People

Watchers

Najib El Alam avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.