How can I run .http files without IntelliJ?

Viewed 1714

IntelliJ and VS Code support a "editor-based REST client" that allows you to write and save HTTP requests in a file and execute them (example). I think it would be a good idea to include something like this in a project for a REST API so developers can see various endpoints and test them without leaving the editor, but I don't want to tie them to a specific IDE.

Is it possible to run .http files without requiring my team members adopt IntelliJ or VSCode?

2 Answers

If you are using VS Code you can use httpYAC. It is compatible with the IntelliJ http-Client.

Related