Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>http_status_codesNew to Visual Studio Code? Get it now.
http_status_codes

http_status_codes

Aryan Bhat

|
7 installs
| (0) | Free
Provides a description when you hover over the http status code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

🛰️ HTTP Status Hover

A lightweight VS Code extension that shows helpful HTTP status code descriptions when you hover over them — even if they're stored in variables!


✨ Features

  • 🔍 Hover over status codes like 404, 500, 200...
  • 💡 Works inside status(...), res.status(...), or statusCode(...)
  • 🧠 Understands variables like:
    const a = 404;
    res.status(a); // Hover over "a" → shows 404 Not Found
    
    

💻 Supported Languages

  • JavaScript (.js)
  • TypeScript (.ts)

🛠️ Example

const ok = 200;
const fail = 500;

res.status(ok);   // ✅ Hover → "200 OK"
res.status(fail); // ✅ Hover → "500 Internal Server Error"
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft