Yet Another Pokedex (YaP) is a simple Pokedex application built with Nuxt 3. This project aims to provide a user-friendly interface to explore and discover various Pokémon, their stats, abilities, and more.
General design from https://dribbble.com/shots/16833947-Mobile-Pokedex-App-Design-Exploration/attachments/11892526?mode=media Types icons from https://github.com/duiker101/pokemon-type-svg-icons Icons from https://heroicons.com/
- Browse a list of Pokémon
- View detailed information about each Pokémon
- Responsive design, compatible with both desktop and mobile devices
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.