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-wrldwide-social

v1.0.1

Published

n8n community node for posting to social media via WRLDWIDE API

Readme

n8n-nodes-wrldwide-social

This is an n8n community node for posting to social media platforms via the WRLDWIDE API.

Features

  • Post text and media to multiple social platforms simultaneously
  • Supported platforms: Twitter/X, Facebook, Instagram, LinkedIn, TikTok, YouTube, Bluesky, Threads, Pinterest, Reddit, Telegram, Snapchat, Google Business
  • Schedule posts for future publishing
  • YouTube video posting with required title field

Prerequisites

  1. A WRLDWIDE account with a paid subscription (Art Director, Data Analyst, or Growth Specialist tier)
  2. Social media accounts connected in your WRLDWIDE dashboard
  3. A WRLDWIDE API key (generate from Settings > API Keys)

Installation

For self-hosted n8n

  1. Navigate to your n8n installation directory
  2. Install the package:
    npm install n8n-nodes-wrldwide-social
  3. Restart n8n

Manual Installation

  1. Clone or download this repository
  2. Run npm install to install dependencies
  3. Run npm run build to compile TypeScript
  4. Run npm run build:icons to copy icon assets to dist
  5. Run npm link to create a global link
  6. Navigate to your n8n custom nodes directory (~/.n8n/custom/)
  7. Run npm link n8n-nodes-wrldwide-social
  8. Restart n8n

Configuration

  1. In n8n, go to Credentials and create a new "WRLDWIDE API" credential
  2. Enter your API key (starts with wrld_)
  3. The default API URL is pre-configured but can be changed if needed

Usage

Post to Social Media

  1. Add the "WRLDWIDE Social Post" node to your workflow
  2. Select your WRLDWIDE API credentials
  3. Configure the post:
    • Text: The content of your post (character limits vary by platform)
    • Platforms: Select one or more platforms to post to
    • Media URLs: Optional comma-separated list of publicly accessible media URLs
    • YouTube Title: Required when posting to YouTube (max 100 characters)
    • Schedule Date: Optional future date/time for scheduled posting

Character Limits by Platform

| Platform | Limit | | --------------- | ----- | | Twitter/X | 280 | | Bluesky | 300 | | Threads | 500 | | Pinterest | 500 | | Snapchat | 500 | | Telegram | 1024 | | Google Business | 1500 | | Instagram | 2200 | | TikTok | 2200 | | LinkedIn | 3000 | | Reddit | 5000 | | YouTube | 5000 | | Facebook | 63206 |

API Response

Successful posts return:

{
  "status": "success",
  "postId": "uuid",
  "ayrsharePostId": "string",
  "platforms": {
    "twitter": "post_id",
    "instagram": "post_id"
  },
  "scheduled": false
}

Error Handling

The node will throw errors for:

  • Missing API credentials
  • No platforms selected
  • Empty post (no text or media)
  • YouTube posts without a title
  • YouTube title exceeding 100 characters
  • Disconnected platforms
  • API rate limits

Use the "Continue On Fail" option to handle errors gracefully in your workflow.

Support

For issues with the WRLDWIDE API, contact [email protected]

License

MIT