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

@hostwebhook/node-types

v1.85.0

Published

Shared node type definitions, connection rules, and dispatch config for HostWebhook

Downloads

6,158

Readme

@hostwebhook/node-types

Shared node type definitions, connection rules, dispatch config and the centralized NODE_REGISTRY for HostWebhook. Read by all three repos -- the api, hw-nodes and the dashboard -- so that a node's type, prefix, colour, allowed connections and dispatch target are written once instead of three times.

No dependencies and no peer dependencies. That is deliberate: the dashboard loads this package in the browser, and anything pulled in here would be pulled in there. It also ships a tree-shakeable ESM branch alongside CommonJS, so asking for one export does not drag in the Gmail, Notion and GitHub operation catalogues (measured: 219 kB down to 61 kB in the dashboard's MCP app bundle).

npm install @hostwebhook/node-types

What's in it

| Export | What it answers | |---|---| | NodeType, ALL_NODE_TYPES | Which node types exist | | NODE_REGISTRY, getNodeRegistryEntry | Everything known about one node type | | NODE_CONNECTIONS, canReceiveFrom | What may connect to what | | NODE_DISPATCH, getNodeDispatchConfig | Which collection and service run a node | | NODE_UI, resolveNodeId | Canvas handles, prefixes, colours | | CREDENTIAL_TYPES | The credential type registry | | *_OPERATIONS, *_TOOLKIT_* | Per-integration operation catalogues | | armarRespuestaDelSync | The sync-mode HTTP response, built in one place |

Two things worth knowing before you edit

This file must be UTF-8. It was a 36-byte UTF-16 stub until 2026-09-11, when npm's registry began rejecting such manifests outright: 400 Bad Request ... manifest contains an unsupported NUL character. Version 1.77.0 published fine the day before with the exact same file, so the rule is new and it is not retroactive -- the next publish of any package whose README a Windows > redirect ever touched will fail the same way. npm publish always includes the README, regardless of files.

Relative imports inside src/ need the .js extension. Without it the ESM branch still works in every bundler and dies in Node with ERR_MODULE_NOT_FOUND. __tests__/paquete-doble.test.ts is what catches that, along with sideEffects: false going missing and the exports map closing a deep path someone else already depends on.