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

v0.1.0

Published

n8n community node: LLM Gateway Chat Model with custom credential for OpenAI-compatible gateways

Readme

n8n-nodes-llmgateway

n8n community package: LLM Gateway Chat Model node with custom LLM Gateway credential for any OpenAI-compatible gateway (e.g. /v1/chat/completions, /v1/models).

  • Node: Shows in AI Agent → Chat Model dropdown (n8n v1.101+).
  • Credential: API Key + Gateway Base URL; uses Bearer auth like OpenAI.

Installation in n8n

  1. In n8n: SettingsCommunity nodesInstall a community node.
  2. Enter: n8n-nodes-llmgateway (or your npm package name).
  3. Install. Then add LLM Gateway credential and use LLM Gateway Chat Model in AI Agent.

Artifactory (company private registry): See ARTIFACTORY.md for publish and n8n install steps.

What to do next

  1. Point npm at Artifactory – The repo has an .npmrc that sets the registry to Wayfair’s internal npm (artifactory.service.bo1.csnzoo.com/artifactory/api/npm/npm). No change needed unless your team uses a different registry.
  2. Authenticate and publish – From the repo root run npm login --registry=https://artifactory.service.bo1.csnzoo.com/artifactory/api/npm/npm (use your Artifactory/SSO credentials), then npm publish. The package will be pushed to Artifactory. See ARTIFACTORY.md § 2.1.
  3. Use in n8n – Set N8N_COMMUNITY_PACKAGES_REGISTRY to the same Artifactory npm URL; add .npmrc auth in the n8n container if required. Then in n8n go to Settings → Community nodes and install n8n-nodes-llmgateway. See ARTIFACTORY.md § 3.

Package structure (for npm / repo)

n8n-nodes-llmgateway/
├── package.json
├── README.md
├── credentials/
│   ├── LlmGatewayApi.credentials.js
│   └── LlmGatewayApi.png          ← add icon (optional)
└── nodes/
    └── LlmGatewayChatModel/
        ├── LlmGatewayChatModel.node.js
        └── LlmGatewayChatModel.png   ← add icon (optional)

Icons (optional)

  • credentials/LlmGatewayApi.png – credential icon (e.g. 48×48 or 128×128).
  • nodes/LlmGatewayChatModel/LlmGatewayChatModel.png – node icon.

If missing, n8n uses default icons.

Requirements

  • n8n v1.101+ (uses @langchain/openai and ai_languageModel).
  • Gateway: OpenAI-compatible (e.g. GET /v1/models, POST /v1/chat/completions).

License

MIT