fakestackoverflow
v1.2.0
Published
A fun CLI that gives fake Stack Overflow style answers to your errors in real-time.
Readme
🤖 FakeStack – Your sarcastic coding assistant
FakeStack is a CLI tool that intercepts JavaScript runtime errors and responds with fake Stack Overflow–style answers — packed with sarcasm, irony, and meme-worthy commentary.
Because debugging doesn’t have to be boring.
✨ Features
- 🔍 Detects common JavaScript errors like
ReferenceError,TypeError, andSyntaxError - 🎲 Randomly chooses 1 joke per error to keep it fresh
- 🧠 Still shows the actual error output so you can fix it
- 🔄 Works with
nodemonfor real-time roasting
🛠 Installation
npm i fakestackoverflow
## usage
fakestack <script.js >
# example
fakestack index.js
# FakeStack with nodemon
in package.json , add or edit this script
"scripts": {
"dev": "nodemon --exec \"fakestack test.js\""
}
then run
## npm run dev