You'll be creating a pokedex, a place to view info on all the Pokemon
- The user can view all the pokemon.
- The user can view a picture of each pokemon.
- The user can view the pokemon name and number.
- The system will change the color of the card based on the Pokemons type. For example, yellow for electric.
- The system will initially fill the database with data from the PokeAPI
- The user can search pokemon
- The user can view more attributes of each pokemon
- The user can order pokemon by any attribute
- The user can filter pokemon by any attribute
| Pokemon |
|---|
| id: number |
| name: string |
| img: string |
| types: string[] |
| Method | Path | Response |
|---|---|---|
| GET | /pokemons | Pokemon[] |
Push to GitHub and create a pull request

