The poké world is a vast world and there are many species yet to be discovered. This Pokedex gives users access to a collection information for already discovered pokémon and also gives them the ability to add fields of their own for newly discovered pokémon.
Clone the repositiory into a folder and get into the folder
$ git clone https://github.com/ram95krishh/pokedex.git pokedex
$ cd pokedex
Now make sure node is installed, then install the dependencies with the following command
$ npm install
Start the web app locally with the command.. This will start the app in port 8080.
$ npm start
- Using the
pokédex.json
file it renders the list of pokémon's names. - Has a display area that shows the following:
- name
- type(s)
- attack level (listed under base)
- defense level (listed under base)
- Gives users the ability to update current pokémon in the system.
- Users can add new pokémon and new attributes.
- Truncate all pokemons with id greater than 151 using TRUNCATE button.
- Search screen to find pokémon by name
- Search screen to find pokémon by type
- Autofill suggestions for the search bar.