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-reepl

v1.0.6

Published

Reepl nodes for n8n: LinkedIn content actions and webhook triggers

Readme

n8n-nodes-reepl

Reepl nodes for n8n. Use Reepl in self-hosted n8n workflows to create, schedule, publish, and manage LinkedIn content, or start workflows from Reepl webhook events.

Installation

Install the community package from the n8n editor:

  1. Open Settings > Community nodes.
  2. Choose Install a community node.
  3. Enter n8n-nodes-reepl and confirm the community-node warning.
  4. Restart n8n if it asks you to.

For a self-hosted installation managed from a terminal, install the package in the n8n environment with npm install n8n-nodes-reepl and restart n8n.

n8n Cloud availability requires the package to complete n8n's community-node verification process; self-hosted n8n can install community packages directly from npm.

Credentials

Create a Reepl API credential with:

  • API Key — create one in Reepl under Settings > API Keys. Give it only the scopes your workflow needs.
  • Base URL — leave this as https://api.reepl.io/v1 unless you are using a compatible Reepl API endpoint.

The credential test calls GET /external/me. API keys are sent in the X-API-Key header.

Nodes

Reepl

The action node includes the 24 operations in the Reepl External API:

  • User: get the current user
  • Drafts: list, create, get, update, and delete drafts
  • Posts: list, publish, schedule, update, delete, publish now, and add a comment
  • Tools: check content virality
  • Carousel: create, get, update, and delete carousel drafts
  • Webhooks: list, create, get, update, delete, and test subscriptions

Each operation accepts JSON for path parameters, query parameters, and request bodies. Expressions are supported, so values can be mapped from previous nodes. The API response is returned under the data field together with the operation metadata.

Reepl Trigger

The trigger registers and removes a Reepl webhook subscription when the workflow is activated or deactivated. Available events:

  • Post Published
  • Draft Created
  • Publish Failed

Webhook subscriptions require a paid Reepl plan and an API key with the webhooks:manage scope. Reepl signs deliveries with HMAC-SHA256; the trigger verifies the signature using the secret received when it creates the subscription.

Development

npm install
npm test

npm test compiles the nodes, copies the icon into dist, and runs the helper tests. Use npm run typecheck for a type-only check and npm run build to create the package output.

Version history

1.0.0

  • Added 24 Reepl External API operations.
  • Added Reepl webhook triggers for post published, draft created, and publish failed events.