nvim-http-client provides rich features for handling HTTP responses, including the ability to view, save, and process responses with custom handlers.
Responses are displayed in a dedicated split window with the following features:
- Each response creates a new tab with timestamp
- Latest 10 responses are preserved
- Automatic formatting for JSON and XML responses
- Syntax highlighting for response bodies
- Timing metrics when profiling is enabled
You can navigate between responses using:
H
- Previous responseL
- Next responseq
or<Esc>
- Close response window
Response handlers allow you to execute custom code after receiving a response. This is useful for extracting data from responses and using it in subsequent requests.
Response handlers are defined using the following syntax:
### Your HTTP Request
GET {{host}}/api/endpoint
> {%
// Your JavaScript code here
%}
The code between > {%
and %}
is executed after the response is received.
Within a response handler, you have access to:
-
response
- The HTTP response objectresponse.body
- The response body (parsed as JSON if possible)response.headers
- Response headersresponse.status
- HTTP status code
-
client
- The HTTP client objectclient.global.set(key, value)
- Set a global variable for use in subsequent requests
### Login
POST {{host}}/api/#
Content-Type: application/json
{
"username": "{{username}}",
"password": "{{password}}"
}
> {%
// Extract the token from the response
const token = response.body.token;
// Store it as a global variable
client.global.set("auth_token", token);
// Log information (appears in response window)
console.log("Token extracted and stored as auth_token");
%}
### Get Protected Resource
GET {{host}}/api/protected
Authorization: Bearer {{auth_token}}
### Get Users
GET {{host}}/api/users
> {%
// Count the number of users
const userCount = response.body.length;
client.global.set("userCount", userCount);
// Find a specific user
const adminUser = response.body.find(user => user.role === 'admin');
if (adminUser) {
client.global.set("adminId", adminUser.id);
}
%}
### Get Admin Details
GET {{host}}/api/users/{{adminId}}
You can save the current response body to a file using:
- Command:
:HttpSaveResponse
- Default keybinding:
<leader>hs
(if enabled)
When saving a response:
- You'll be prompted for a filename
- The response body will be formatted (if it's JSON or XML)
- The formatted content will be saved to the specified file