https://github.com/mykeels/toddler-games
A collection of interactive learning games/activities for Toddlers
https://github.com/mykeels/toddler-games
alphabet numbers phonics reading toddler-game
Last synced: 11 months ago
JSON representation
A collection of interactive learning games/activities for Toddlers
- Host: GitHub
- URL: https://github.com/mykeels/toddler-games
- Owner: mykeels
- Created: 2024-09-15T15:34:46.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-09T15:51:18.000Z (11 months ago)
- Last Synced: 2025-07-09T16:41:59.095Z (11 months ago)
- Topics: alphabet, numbers, phonics, reading, toddler-game
- Language: TypeScript
- Homepage: https://mykeels.github.io/toddler-games
- Size: 55.1 MB
- Stars: 16
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toddler Games
This codebase represents a collection of educational games for toddlers called "Toddler Games". It's a React-based web application that includes several interactive games designed to help toddlers learn various concepts.
Demo: [https://mykeels.github.io/toddler-games/](https://mykeels.github.io/toddler-games/)
[](https://mykeels.github.io/toddler-games/)
Here's some games included:
- [Find and Tap](./src/games/FindAndTap/README.md): A game where toddlers identify and tap on specific letters, numbers, or objects on the screen.
- [Tap to Count](./src/games/TapToCount/README.md): An interactive game that presents various objects for toddlers to count by tapping, helping them learn numbers and basic addition.
- [Free Draw](./src/games/FreeDraw/README.md): A game where toddlers can draw with different colors. The colors change every 5 seconds.
- [Number Keypad](./src/games/NumberKeypad/README.md): A game where toddlers can tap on the numbers 0-10 to hear the corresponding number.
- [Match Image to Letter](./src/games/ImageToLetterMatching/README.md): An interactive game that helps toddlers identify letters by matching them with the corresponding image.
- [Letter Tracing](./src/games/LetterTracing/README.md): An interactive game that helps toddlers practice writing letters by tracing them on the screen with their finger or a stylus.
- [Read Words](./src/games/ReadWords/README.md): A game where toddlers read words by tapping on the corresponding letter, helping them learn to associate letters with sounds.
## Using the template
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
## Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level `parserOptions` property like this:
```js
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
```
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
- Optionally add `...tseslint.configs.stylisticTypeChecked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
```js
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})
```