https://github.com/ericadamski/alphabet-keys
🍎- The letters and numbers so my sons can have some fun typing on the computer!
https://github.com/ericadamski/alphabet-keys
Last synced: about 1 month ago
JSON representation
🍎- The letters and numbers so my sons can have some fun typing on the computer!
- Host: GitHub
- URL: https://github.com/ericadamski/alphabet-keys
- Owner: ericadamski
- Created: 2018-10-09T12:09:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T03:54:54.000Z (over 2 years ago)
- Last Synced: 2025-04-02T05:51:42.762Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://alphabet-keys.now.sh/
- Size: 3.77 MB
- Stars: 27
- Watchers: 1
- Forks: 38
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alphabet-Keys
🍎- The letters and numbers so my son can have some fun typing on the computer!

# Develop
## Getting Started
```bash
git clone https://github.com/ericadamski/alphabet-keys.git && cd alphabet-keys
yarn install
yarn start
```## Add a Language
1. Add a new locale file in [src/data/emojis/](https://github.com/ericadamski/alphabet-keys/tree/master/src/data/emojis)
2. Import the new locale file at the top of [src/data/emojis/index.js](https://github.com/ericadamski/alphabet-keys/tree/master/src/data/emojis/index.js)
1. Add the new lang file to the `allLangs` array in [src/data/languages.js](https://github.com/ericadamski/alphabet-keys/tree/master/src/data/languages.js) to make it available in the language menu.
2. Spread the new locale data in the default export at the bottom of [src/data/languages.js](https://github.com/ericadamski/alphabet-keys/tree/master/src/data/languages.js) to make it available in the exported `SUPPORTED_LANGS` object.
3. Done!