https://github.com/bootdotdev/prepcards
Review popular programming technologies for your next interview with this flash card game
https://github.com/bootdotdev/prepcards
educational
Last synced: 7 days ago
JSON representation
Review popular programming technologies for your next interview with this flash card game
- Host: GitHub
- URL: https://github.com/bootdotdev/prepcards
- Owner: bootdotdev
- License: mit
- Created: 2022-11-25T15:40:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T16:05:51.000Z (11 months ago)
- Last Synced: 2025-04-20T12:14:25.613Z (8 days ago)
- Topics: educational
- Language: TypeScript
- Homepage: https://prepcards.dev
- Size: 337 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prepcards.dev
A simple flash card game, intended to help you prepare for coding interviews by familiarizing you with popular technologies. Hosted officially at [prepcards.dev](https://prepcards.dev). Hit the project with a star if you find it useful ⭐
## Motivation
I had never used TypeScript or Svelte before for an entire project, so I wanted to give it a shot.
## 🚀 Contributing
I would *love* for you to help make this game better! Feel free to open pull requests. In particular, I'd love to have you add new cards and decks. Here's the quick start guide to contributing to this project.
1. Fork and clone the repo
2. Use the proper node version. You can use nvm or install the version in `.nvmrc` manually.```bash
nvm use
```3. Install dependencies
```bash
npm install
```4. Make sure that you use the configured prettier formatting, I won't accept pull requests that fail to pass the lint checks in the CI.
### Adding new cards
Cards are stored in the `/src/lib/cards` directory. You can add cards to the existing files, or make new files if the existing ones aren't of the correct category. Cards are organized into decks in `/src/lib/cards/index.ts` according to their tags. Feel free to use the existing tags and decks, or add new ones if necessary.
Thanks for helping out!