This is a n8n node to send and receive messages from NATS. The node is based on the nats package.
To install the node locally, navigate to your n8n data directory and run the following command:
npm install --save n8n-nodes-nats-plasma
To install the node using Docker, add the following line to the services
block in your docker-compose.yml
file:
n8n:
image: n8nio/n8n
ports:
- "5678:5678"
volumes:
- ./n8n:/root/.n8n
environment:
N8N_CUSTOM_NODES: '["n8n-nodes-nats-plasma"]'
- Open your n8n instance in a web browser.
- Click on "Settings" in the left-hand navigation panel.
- Click on "Community nodes" in the left-hand navigation panel.
- Click on the "Install" button.
- Fill in the name of the node: "n8n-nodes-nats-plasma".
- Click "Install"
The input node can be configured to send messages to a NATS subject. The message can be configured to be static or to be the result of a previous node.
The output node can be configured to receive messages from a NATS subject. The message can be configured to be the received message or to be the result of a previous node.
This project is licensed under the [MIT License](