@qualesme/http-n8n
v0.1.4
Published
n8n adapter for `@qualesme/http-core`. Wraps `helpers.httpRequestWithAuthentication` inside custom nodes.
Readme
@qualesme/http-n8n
n8n adapter for @qualesme/http-core.
Wraps helpers.httpRequestWithAuthentication inside custom nodes.
import { N8nAdapter } from "@qualesme/http-n8n";
// inside execute() of a node:
const http = new N8nAdapter(this, "myCredentials", "https://api.example.com");
const res = await http.request({ method: "GET", url: "/ping" });