💀 ScreamyBugs
ScreamyBugs is a simple VS Code extension that runs the currently open file and plays a scream sound if an error occurs.
It’s a lightweight and fun way to instantly know when your code crashes.
🚀 Features
- Runs the currently active file
- Shows output in a custom ScreamyBugs terminal
- Detects runtime errors (stderr)
- Plays a scream sound when an error is detected
- Works on Windows, macOS, and Linux
📂 Supported File Types
- JavaScript (.js)
- TypeScript (.ts)
Node.js must be installed on your system.
▶️ How to Use
Open a JavaScript or TypeScript file.
Press:
Ctrl + Shift + P
Run:
ScreamyBugs: Run File
The file will execute inside the ScreamyBugs terminal.
If an error occurs...
💀 It screams.
🛠 How It Works
- The extension runs the currently open file using Node.js.
- It listens to the error output (
stderr).
- If an error is detected, it plays an alert sound.
🧪 Example
If your file contains:
console.log("Hello World");
throw new Error("Something broke!");
| |