Package Information
Released: 7/11/2025
Downloads: 0 weekly / 0 monthly
Latest Version: 0.1.10
Author: nevodavid10
Available Nodes
Documentation
Postiz N8N custom node
This is the N8N custom node for Postiz.
Installation (non-docker)
Go to your n8n installation usually located at ~/.n8n
.
Check if you have the custom
folder, if not create it and create a new package.json file inside.
mkdir -p ~/.n8n/custom
npm init -y
Then install the Postiz node package:
npm install n8n-nodes-postiz
For docker users
Create a new folder on your host machine, for example ~/n8n-custom-nodes
, and create a new package.json file inside:
mkdir -p ~/n8n-custom-nodes
npm init -y
install the Postiz node package:
npm install n8n-nodes-postiz
When you run the n8n docker container, mount the custom nodes folder to the container:
Add the following environment variable to your docker run command:
N8N_CUSTOM_EXTENSIONS="~/n8n-custom-nodes"
If you are self-hosting Postiz on port 5000, your host must end with /api for example:
http://yourdomain.com/api
Alternatively, you can use the SDK with curl, check the Postiz API documentation for more information.