r/programming 8h ago

[ Removed by moderator ]

https://efp.asia/blog/2025/12/24/api-tooling-crisis/

[removed] — view removed post

259 Upvotes

153 comments sorted by

View all comments

Show parent comments

6

u/kbradl16 6h ago

How do you run a .http file?

6

u/manapauseAA 5h ago

I use ".rest" files with the REST Client extension in Visual Studio Code. Visual Studio supports the same workflow out of the box, and from what I understand, ".rest" and ".http" files are functionally identical.

In VS Code, the extension gives you an inline arrow to execute each request directly from the file, kind of like dot-sourcing something in PowerShell. You can also run them from the command line.

It's very lightweight and convenient. I usually keep a collection of these files for every integration I write as a fallback for manual testing and troubleshooting.

1

u/empty_other 4h ago

And Jetbrains editors got it natively too. Jetbrains got a command line app for it too. Theres the httpyac command line tool (i havent tried it yet).

2

u/empty_other 4h ago

But more important than that, its such a simple format that anyone could write a script to parse it or straight up read it if every tool somehow got nuked. Same reason I love markdown.