Quickstart Guide
Get Pokémon Explorer running on your local machine in just a few steps. No build process, no npm install—just pure HTML, CSS, and JavaScript.Pokémon Explorer is a static frontend application with zero dependencies. Simply open the HTML file in a browser and start exploring!
Quick Start
Open in Browser
Open Then visit
index.html directly in your web browser:Option 1: Double-click the file- Navigate to the project folder
- Double-click
index.html - The app opens in your default browser
http://localhost:8000Using a local server instead of opening the file directly ensures all features work correctly, especially if you add custom fonts or external resources.
Exploring the Interface
1. Search Bar
The search bar supports multiple search patterns:2. Type Filter
Filter Pokémon by their elemental type:- Normal, Fire, Water, Electric, Grass, Ice
- Fighting, Poison, Ground, Flying
- Psychic, Bug, Rock, Ghost
- Dragon, Dark, Steel, Fairy
3. Generation Filter
Explore Pokémon from specific game generations:Gen I
Kanto (1-151)
Gen II
Johto (152-251)
Gen III
Hoenn (252-386)
Gen IV
Sinnoh (387-493)
Gen V
Unova (494-649)
Gen VI
Kalos (650-721)
Gen VII
Alola (722-809)
Gen VIII
Galar (810-905)
Gen IX
Paldea (906-1025)
4. Pokémon Cards
Each card displays rich information:- Image: Official artwork from PokeAPI
- Name & ID: Capitalized name with formatted ID
- Type badges: Color-coded by type
- Stats: HP, Attack, Defense, Speed
- Abilities: Up to 3 abilities with Spanish translations
- Physical info: Height, Weight, Base Experience
- Extra data: Color indicator and habitat (when available)
Interactive Features
Hearing Pokémon Cries
This two-step activation prevents unexpected audio playback while browsing.
Using the Interactive Tour
Click the “Guía Interactiva” button at the top to start a guided tour:- Smart Search: How to search and use autocomplete
- Advanced Filters: Using type, generation, and other filters
- Pokémon Cards: Viewing stats and playing cries
- Pagination: Navigating through results
Pagination
Browse through 12 Pokémon at a time:← Anterior
Go to the previous page
Page Numbers
Jump directly to a specific page
Siguiente →
Go to the next page
Example Workflows
Find All Fire-Type Pokémon from Gen I
Search for Blue Water Pokémon
Explore Dragon Types
Performance Tips
First Load
Initial load fetches 24 Pokémon for instant display
Smart Caching
All fetched data is cached for instant re-filtering
Batch Loading
Large filters load in batches of 50 to prevent UI freeze
Lazy Details
Species data (color/habitat) loads on-demand
Next Steps
Installation Guide
Set up a development environment and customize the app
Project Structure
Learn about the codebase architecture
Ready to dive deeper? Check out the Installation guide to set up your development environment and start customizing Pokémon Explorer.