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

custom-node-template

v0.2.4

Published

Custom n8n nodes for Tarun's project

Readme

Custom Node Template

This repository contains custom nodes for n8n based on the n8n-nodes-starter template. It includes example nodes that you can modify or replace with your own custom nodes.

Prerequisites

You need the following installed on your development machine:

  • git
  • Node.js (minimum version 18)
  • npm or pnpm package manager
  • A local n8n server installation

Getting Started

  1. Clone this repository:

    git clone https://github.com/your-username/custom-node-template.git
  2. Install dependencies:

    cd custom-node-template
    npm install
  3. Browse the examples in /nodes and /credentials. Modify the examples, or replace them with your own nodes.

  4. Update the package.json to match your details.

  5. Build the custom nodes:

    npm run build
  6. Link the custom nodes to your local n8n server using the provided script:

    ./scripts/link-to-local-server.sh /path/to/your/local-n8n-server
  7. Start your n8n server and you should see the custom nodes available.

Scripts

This repository includes the following utility scripts in the scripts directory:

link-to-local-server.sh

Links the custom nodes to a local n8n server installation.

Usage:

./scripts/link-to-local-server.sh [path-to-local-n8n-server]

Parameters:

  • path-to-local-n8n-server: Optional. Path to the local n8n server directory. If not provided, the script will try to use a default path.

What it does:

  1. Builds the custom nodes package
  2. Updates the n8n server's .env file to include the full path to the custom nodes in the N8N_CUSTOM_EXTENSIONS variable
  3. Ensures community nodes are enabled

No symlinks are created - the approach relies solely on the environment variable configuration.

unlink-from-local-server.sh

Removes the custom nodes from a local n8n server installation.

Usage:

./scripts/unlink-from-local-server.sh [path-to-local-n8n-server]

Parameters:

  • path-to-local-n8n-server: Optional. Path to the local n8n server directory. If not provided, the script will try to use a default path.

What it does:

  1. Removes any symlinks that might have been created in previous versions
  2. Updates the n8n server's .env file to remove the custom nodes from the N8N_CUSTOM_EXTENSIONS variable
  3. Provides guidance on fully removing the nodes from the n8n server

Development Workflow

  1. Modify or create nodes in the nodes directory.
  2. Run npm run build to compile your changes.
  3. Use the link-to-local-server script to update your local n8n server.
  4. Restart your n8n server to see the changes.
  5. When you're done with development or want to remove the nodes, use the unlink-from-local-server script.

Troubleshooting

If your custom nodes aren't appearing in n8n:

  1. Ensure the N8N_CUSTOM_EXTENSIONS path in the server's .env file is correct
  2. Verify that N8N_COMMUNITY_NODES_ENABLED=true is set in the server's .env file
  3. Make sure you've built the nodes with npm run build
  4. Restart the n8n server after any changes

License

MIT