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

@diyrex/n8n-nodes-outline

v0.1.1

Published

n8n community node for Outline wiki API — documents, collections, users, groups, comments, shares, search, and events

Readme


📦 Installation

Self-Hosted n8n (GUI)

  1. Go to Settings → Community Nodes
  2. Enter: @diyrex/n8n-nodes-outline
  3. Click Install
  4. Restart n8n

Self-Hosted n8n (CLI)

mkdir -p ~/.n8n/nodes && cd ~/.n8n/nodes
npm init -y
npm install @diyrex/n8n-nodes-outline
# Restart n8n

Docker

FROM n8nio/n8n:latest
RUN mkdir -p /home/node/.n8n/nodes && \
    cd /home/node/.n8n/nodes && \
    npm init -y && \
    npm install @diyrex/n8n-nodes-outline

Or with docker-compose:

services:
  n8n:
    image: n8nio/n8n:latest
    volumes:
      - n8n_data:/home/node/.n8n
    environment:
      - N8N_CUSTOM_EXTENSIONS=/home/node/.n8n/nodes/node_modules/@diyrex/n8n-nodes-outline

Development (Local Testing)

git clone https://github.com/DiyRex/outline-n8n-node.git
cd outline-n8n-node
npm install
npm run build
npm link

# In your n8n data directory
mkdir -p ~/.n8n/nodes && cd ~/.n8n/nodes
npm link @diyrex/n8n-nodes-outline
# Restart n8n

🔧 Credentials Setup

  1. In your Outline instance, go to Settings → API
  2. Create a new API key with read and write scopes
  3. In n8n, create new Outline API credentials:
    • Instance URL: https://your-outline-instance.com
    • API Key: ol_api_your_key_here

✦ Supported Resources & Operations

Document

| Operation | Description | |-----------|-------------| | Create | Create a new document in a collection | | Get | Retrieve a document by ID | | Get Many | List documents (with pagination) | | Update | Update title and/or content | | Delete | Soft-delete or permanently delete | | Search | Full-text search across documents | | Archive | Archive a document | | Restore | Restore an archived document | | Export | Export document content | | Drafts | List draft documents | | Viewed | List recently viewed documents |

Collection

| Operation | Description | |-----------|-------------| | Create | Create a new collection | | Get | Retrieve a collection by ID | | Get Many | List all collections | | Update | Update name, description, or color | | Delete | Delete a collection | | Get Documents | Get the document tree of a collection |

User

| Operation | Description | |-----------|-------------| | Get | Get user info (current user if no ID) | | Get Many | List users with optional search |

Group

| Operation | Description | |-----------|-------------| | Create | Create a new group | | Get Many | List all groups | | Delete | Delete a group | | Get Members | List members of a group | | Add User | Add a user to a group | | Remove User | Remove a user from a group |

Comment

| Operation | Description | |-----------|-------------| | Create | Add a comment to a document | | Get Many | List comments (filter by document) | | Delete | Delete a comment | | Resolve | Mark a comment thread as resolved |

Share

| Operation | Description | |-----------|-------------| | Create | Create a public share link | | Get Many | List all share links | | Revoke | Revoke a share link |

Search

| Operation | Description | |-----------|-------------| | Documents | Full-text search across documents | | Titles | Search document titles only (faster) |

Event

| Operation | Description | |-----------|-------------| | Get Many | List activity/audit events |


🔄 Example Workflows

Publish Release Notes

GitHub Trigger → Generate Changelog → Outline (Create Document)

Sync Documentation

Schedule Trigger → Read Files → Outline (Create/Update Document)

Backup Wiki

Schedule Trigger → Outline (Get Many Collections) → Outline (Get Documents) → Write to Disk

Notify on Document Changes

Schedule Trigger → Outline (Get Many Events) → Filter → Slack (Send Message)

🛠️ Development

npm install          # Install dependencies
npm run build        # Compile TypeScript
npm run dev          # Watch mode
npm run lint         # Lint code
npm run lint:fix     # Fix lint issues

📄 License

MIT


🔗 Links