This is a project is a Pokedex from Pokémon, made with pure JavaScript and uses a API called PokeAPI:

For the images in this project I use a website called CDN. It was a website from content distribution in cloud
All the images are available in : https://cdn.traction.one/pokedex/pokemon/
The Preview of website are available here
- Git
- Node: 10.11.0 or greater
- A GitHub fork of the repo (for any contributions)
- A clone of the pokeapi.co repo on your local machine
cd pokeapi.coto go into the project root.npm installto install project dependencies.
npm run startto start the hot-reloading development server (powered by React-Static).- Go to
http://localhost:3000to view the site in your browser.
npm run buildto build the production site.npm run serveto serve the production version of the site on a local test server.
Production files are located in the dist directory.
- Follow the "Running locally" instructions.
- Save the files and check results in the browser.
Changes to React components in /src will hot-reload. If modifying the /alerts.json file or files in the /src/docs/ directory, you will need to restart the dev server before changes will be visible.
If possible, test any visual changes in all latest versions of common browsers, on both desktop and mobile.
git add -Ato stage your changed files.git commit -m "My message"(replacing My message with a commit message, such as "Fix header logo on Android") to commit your changes. While not critically important, try to follow the guidelines in How to Write a Git Commit Message.git push my-fork-name branch-nameto push your changes to your own GitHub repository.- Go to the pokeapi.co GitHub repo and you should see your recently pushed branches.
- Follow GitHub's instructions to submit a pull request.
- Describe the changes you made in the body of the PR. If possible, include screenshots of visual changes.