A better, suitable, & concise PokeAPI wrapper for Node projects using ES modules.
npm install pokeapi-enhanced
import { Pokedex } from 'pokeapi-enhanced';
const dex = await Pokedex.getPokemon('mr. mime');
const id = dex?.getPokemonId; // getter
Always make sure that you check the API docs for reference.
Some pokemons might not have some properties and will display as null or undefined.
Please read our code of conduct and contributing guidelines before attempting to contribute.
To open issues, please go here
Only fetching from https://pokeapi.co/api/v2/pokemon endpoint is accessible, in the future, I will keep adding more and more endpoint access implementations.