Ecodebugger
July 20, 2026 ยท View on GitHub
A gamified VS Code extension for debugging with eco coding tips.
Features
- Displays eco-friendly coding tips while you debug.
- Gamifies the debugging process with achievements and XP.
- Encourages sustainable coding habits in a fun way.
Screenshots

How to Use
<<<<<<< HEAD
-
Install the Extension
- Download and install from the VS Code Marketplace (or use the
.vsixfile provided).
- Download and install from the VS Code Marketplace (or use the
-
Start Debugging =======
-
Install the Extension
- Download and install from the github releases ( the
.vsixfile provided).
- Download and install from the github releases ( the
7765923745d803799a23442704b2421a96d28a60
- Open your project in VS Code.
- Start a debugging session as usual.
- The Ecodebugger side panel will appear, showing eco-friendly tips and tracking your progress.
-
Earn Achievements
- Complete debugging tasks to earn XP and unlock achievements.
- View your progress and eco tips in the side panel.
-
Access Commands
- Open the Command Palette (
Ctrl+Shift+PorCmd+Shift+P). - Search for
Ecodebuggerto see available commands, such as:Ecodebugger.helloWorld: Displays a welcome message.
- Open the Command Palette (
Getting Started
- Clone the repository.
- Run
npm installto install dependencies. - Use
npm run compileto build the extension. - Press
F5in VS Code to launch the Extension Development Host.
Summary
Very Important Git Commands Cheat Sheet
| Purpose | Command |
|---|---|
| Check current branch | git branch |
| Create a new branch | git checkout -b feature/branch-name |
| Switch to another branch | git checkout feature/branch-name |
| See changed files | git status |
| Save work | git add . then git commit -m "Message" |
| Push branch to GitHub | git push origin feature/branch-name |
| Pull latest main branch | git pull origin main |