Package Information
Released: 9/15/2025
Downloads: 0 weekly / 28 monthly
Latest Version: 0.1.0
Author: dcrainic17
Documentation
entitys nodes for n8n (simple)
Two standalone nodes for n8n:
- entitys Import (Trigger): Receives HTTP POST webhooks. The node UI shows only the generated webhook URLs.
- entitys Export (Action): Sends an HTTP POST request. Requires a URL and supports optional headers, query parameters, and JSON body.
Installation
npm install n8n-nodes-entitys-simple
Usage
Import (webhook trigger)
- Add entitys Import to your workflow.
- Copy the Test URL or Production URL from the node UI.
- Send a POST request:
curl -X POST "$WEBHOOK_URL" -H "Content-Type: application/json" -d '{"hello":"world"}'
- The node outputs the request body, headers, query, method, and url.
Export (HTTP POST action)
- Add entitys Export after any node.
- Set URL (required).
- Optionally add Query Parameters, JSON Body, and Additional Headers.
- The node outputs
statusCode,headers, andbody.
Notes
- No environment variables or filesystem access.
- English-only UI and docs.
- License: MIT