Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/misterrooster/pokememory
Pokemon memory game using PokeAPI built with Vite, React & TailwindCSS
https://github.com/misterrooster/pokememory
html javascript react vite
Last synced: 13 days ago
JSON representation
Pokemon memory game using PokeAPI built with Vite, React & TailwindCSS
- Host: GitHub
- URL: https://github.com/misterrooster/pokememory
- Owner: MisterRooster
- License: mit
- Created: 2023-07-24T11:09:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-16T00:37:17.000Z (9 months ago)
- Last Synced: 2024-02-16T01:30:04.645Z (9 months ago)
- Topics: html, javascript, react, vite
- Language: JavaScript
- Homepage: https://pokememory.pages.dev
- Size: 388 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pokememory
![Vite shield](https://img.shields.io/badge/-Vite-pink)
![React shield](https://img.shields.io/badge/-React-blue)
![Tailwind shield](https://img.shields.io/badge/-TailwindCSS-purple)A pokemon memory game built with Vite, React and TailwindCSS.
Uses [PokeAPI](https://pokeapi.co/) to gather pokemon data and sound samples from the [DP Sound library](https://www.pokemon.com/us/dp-sound-library).[▶ Live Preview](https://pokememory.pages.dev/)
## How to play
Try to click on as many cards as possible successively without
choosing the same card twice.
The pokemons are getting reordered randomly after every choice.
You beat a level when there is no unique card left to choose.
One additional pokemon joins on every level.## How to compile
First clone the repository locally:
```bash
git clone [email protected]:MisterRooster/pokememory.git
```Then move to the project directory, install dependencies and compile:
```bash
cd pokememory
npm install
npm run build
```To have a preview of the build in the browser:
```bash
npm run preview
```If you want a development server with HMR:
```bash
# 'npm run dev -- --host' to expose on local network
npm run dev
```---
Copyright (c) 2023 MisterRooster ([github.com/MisterRooster](https://github.com/MisterRooster)). All rights reserved.
Licensed under the MIT license. See [LICENSE](LICENSE) for full terms.