n8n-nodes-huarp
v0.1.6
Published
Huarp RPA nodes for n8n
Maintainers
Keywords
Readme
Huarp Nodes for n8n
This package provides custom n8n nodes to integrate with the Huarp RPA platform.
Architecture: The Builder Pattern
Since Huarp executes workflows as a cohesive unit, these nodes work by accumulating steps and then executing them all at once.
Typical Workflow Structure:
Huarp RPA Node (Operation: Start Workflow):
- Initializes an empty list of steps.
- Connect this to the start of your chain.
Huarp RPA Node (Operation: Add Step):
- Choose actions like
Navigate,Click,Type,Extract Text. - Each node adds a step to the list passed from the previous node.
- You can chain as many of these as you needed.
- Choose actions like
Huarp RPA Node (Operation: Execute Workflow):
- Must be the LAST node in the chain.
- Sends the accumulated steps to the Huarp API.
- Returns the execution results (including extracted data and logs).
Installation
- Copy this folder
n8n-nodes-huarpto your local machine or server. - Run
npm installto install dependencies. - Run
npm run buildto compile the TypeScript code. - Link to your n8n instance:
- In this folder:
npm link - In your n8n root folder (usually
~/.n8nor wherever n8n is installed):npm link n8n-nodes-huarp
- In this folder:
- Restart n8n.
Credentials
You will need a Huarp API Key.
- Go to your Huarp Dashboard.
- Generate an API Token.
- In n8n, create a new "Huarp API" credential and paste the key.
