A "Higher or Lower" style guessing game where you compete to guess which WordPress plugin has more active installations. Test your knowledge of the WordPress ecosystem!
- Two WordPress plugins are displayed side by side
- Click on the plugin you think has more active installations
- If you're correct, your streak increases and a new challenger appears
- If you're wrong, it's game over! Try to beat your high score
- Real-time data from the official WordPress.org Plugins API
- Streak tracking with local storage persistence
- High score saved across sessions
- Smart caching to reduce API calls and improve performance
- Responsive design works on desktop and mobile
- Beautiful UI with neon cyberpunk aesthetic
- Alpine.js - Lightweight JavaScript framework for reactivity
- Tailwind CSS - Utility-first CSS framework
- WordPress.org API - Plugin data source
- Vanilla JavaScript - No build step required
Simply open index.html in your browser or serve it with any static file server:
# Using Python
python -m http.server 8000
# Using Node.js
npx serve
# Using PHP
php -S localhost:8000Then open http://localhost:8000 in your browser.
plugguess/
├── index.html # Main HTML file
├── css/
│ └── styles.css # Custom styles and animations
├── js/
│ ├── app.js # Game logic (Alpine.js component)
│ └── tailwind.config.js # Tailwind configuration
└── README.md
The game features a dark cyberpunk-inspired design with:
- Neon green (
#39FF14) and pink (#FF006E) accents - Grid pattern background
- Smooth animations for correct/incorrect answers
- JetBrains Mono and Archivo Black typography
The game uses the WordPress.org Plugins API to fetch plugin data including:
- Plugin name and description
- Author information
- Active installations count
- Rating and version
- Plugin icons
Contributions are welcome! Feel free to:
- Report bugs
- Suggest new features
- Submit pull requests
MIT License - feel free to use this project for learning or your own projects.
Made by AlexBrea