A minimal VS Code extension that allows sending simple HTTP requests from VS Code.
How to use
Install the extension.
Run the command Send HTTP Request from the Command Palette.
Enter the URL, select method, provide JSON body if needed.
Response will be shown in an Output Channel named HTTP Response.
# Simple HTTP Requester
A minimal VS Code extension that allows sending simple HTTP requests from within the editor.
## Features
- Send `GET`, `POST`, `PUT`, and `DELETE` HTTP requests.
- Optional JSON body input.
- Responses are displayed in an output channel named *HTTP Response*.
## How to Use
1. Install the extension.
2. Open the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P`).
3. Run **Send HTTP Request**.
4. Enter the URL, select the HTTP method, and (if needed) provide a JSON body.
5. View the response in the *HTTP Response* output panel.
## Requirements
- Internet access for outgoing HTTP/HTTPS requests.