npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-postora-2

v0.0.5

Published

The ultimate social media scheduling tool

Readme

n8n-nodes-postora-2


🌟 Overview

Postora is an open-source, self-hosted social media management tool (built on Postiz). This community node enables you to seamlessly connect n8n workflows with your Postora instance.

For example, you can load content from RSS feeds or AI generators, process or format it, automatically upload the media, and post or schedule to multiple social media channels in one single action.


⚡ Features

  • Simplified Create Post UI: Choose a target platform and select multiple connected social channels dynamically.
  • Dynamic Platform & Channel Discovery: Lists all 33+ supported platforms in Postiz with a real-time count badge showing how many channels you have connected to each.
  • Automated Media Uploading: Set the media source to URL or Binary Data (local files). The node automatically handles multipart uploads to the Postora storage before making the post.
  • Comprehensive Operations:
    • Post: Create (Publish/Schedule/Draft), Get Status, List, Delete.
    • Media: Upload files directly.
    • AI Video: Generate videos using AI directly via Postora's video engine.

🔌 API & Architecture Mapping

The node communicates directly with the Postora public API at ${host}/public/v1/*.

graph TD
    A[n8n Workflow] --> B[Postora Node]
    B -->|1. List Connected Channels| C[GET /public/v1/integrations]
    B -->|2. Upload Media if present| D[POST /public/v1/upload]
    B -->|3. Publish / Schedule Post| E[POST /public/v1/posts]

1. Dynamic Platform Listing (getPlatforms)

When you select the Create operation, n8n queries the /integrations endpoint. It processes your active connections and displays them inside the platform selector with real-time status count badges:

- Facebook (3 connected)
- LinkedIn (1 connected)
- Bluesky (0 connected)

2. Multi-channel Selection (getAccounts)

Once a platform is chosen, the Social Accounts field updates to show the connected channel names (e.g. your specific Facebook Pages or LinkedIn Profiles) as a multi-select dropdown.

3. Under-the-hood Post Payload Construction

The node transforms the simplified single-platform multi-account UI input into the strict, nested payload schema required by the backend:

{
  "type": "now",
  "shortLink": false,
  "date": "2026-06-16T20:00:00.000Z",
  "tags": [],
  "posts": [
    {
      "integration": { "id": "channel-id-1" },
      "value": [
        {
          "content": "Your Caption Here",
          "id": "",
          "image": [
            { "id": "media-id", "path": "path/to/media.png" }
          ]
        }
      ],
      "group": "",
      "settings": {}
    }
  ]
}

⚙️ Credential Setup

When configuring the Postora API credentials in your n8n workspace:

  1. API Key: Your Postora organization API key (obtainable from Settings → API Keys).
  2. Host: The base URL of your self-hosted Postora backend instance (e.g., https://postora.walidmohamed.com/api).

    [!IMPORTANT] The host URL must end with /api. The node automatically appends /public/v1/ under the hood.


🚀 Installation

Quick Installation (n8n Community Nodes UI)

  1. In n8n, navigate to Settings > Community Nodes.
  2. Click Install a Node.
  3. Enter n8n-nodes-postora-2 in the npm Package Name field.
  4. Agree to the risks and click Install.

This package can be installed alongside n8n-nodes-postora. Its node appears as Postora.W.M in n8n so it does not collide with the older Postora node.


🛠️ Local Development & Debugging

If you want to modify this node or run it locally:

  1. Clone this repository:
    git clone https://github.com/lolotam/postiz-n8n-community-node.git
    cd postiz-n8n-community-node
  2. Install dependencies and build the node:
    pnpm install
    pnpm run build
  3. Link the node to your local n8n installation:
    • Find your local n8n data directory (typically ~/.n8n/ or C:\Users\<User>\.n8n\).
    • Create a symbolic link or junction in ~/.n8n/nodes/node_modules/n8n-nodes-postora-2 pointing to this directory:
      # On Windows (PowerShell)
      New-Item -ItemType Junction -Path "C:\Users\<YourUser>\.n8n\nodes\node_modules\n8n-nodes-postora-2" -Target "C:\path\to\postiz-n8n-community-node"
    • Add the dependency reference to ~/.n8n/nodes/package.json:
      "dependencies": {
        "n8n-nodes-postora-2": "file:C:/path/to/postiz-n8n-community-node"
      }
  4. Restart n8n:
    n8n start