Flappy-boi
Flappy Boi is a polished browser-based Flappy Bird-inspired game built with React, TypeScript, Vite, Tailwind CSS, and Supabase. It features smooth gameplay, dynamic day/night visuals, sound effects, local best-score tracking, and a live online leaderboard.
File Explorer
- favicon.svg
- FlappyBird.tsx
- Leaderboard.tsx
- supabase.ts
- App.tsx
- index.css
- main.tsx
- vite-env.d.ts
- 20260722103945_create_scores_table.sql
- .gitignore
- eslint.config.js
- index.html
- package-lock.json
- package.json
- postcss.config.js
- README.md
- tailwind.config.js
- tsconfig.app.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
supabase
View Details ▼
supabase
Develop, deploy, and manage Supabase projects locally and on the cloud.
supabase login
Log in to Supabase using an access token:
supabase init
Initialize a new Supabase project in the current directory:
supabase start
Start the local Supabase development stack:
lib
View Details ▼
lib
The Microsoft Library Manager for creating and managing static libraries of object files.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
Create a static library from object files:
lib /LIST {{path\to\library.lib}}
List the contents of a library:
lib {{path\to\library.lib}} {{path\to\file.obj}}
Add an object file to an existing library:
