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

nestweaver

v10.1.1

Published

Code knowledge graph for AI agents — 43 MCP tools, 32 languages, graph visualization

Readme

nestweaver

Code knowledge graph for AI agents — 43 MCP tools, 32 languages, graph visualization.

This package is a thin wrapper with no install-time (postinstall) script. It ships one prebuilt-binary package per platform — nestweaver-darwin-arm64, nestweaver-darwin-x64, nestweaver-linux-arm64, nestweaver-linux-x64 — as an optionalDependencies entry, the same pattern esbuild, swc, and Rollup use. npm, pnpm, and Yarn each install only the one matching your machine's os/cpu through their own ordinary dependency resolution; the nestweaver executable on your PATH resolves and runs whichever one actually landed, at invocation time.

No lifecycle scripts to allow. There is nothing for npm install --ignore-scripts to skip, and pnpm 10+'s default block on lifecycle scripts (which used to leave a wrapper with no binary and no pnpm.onlyBuiltDependencies clue why) no longer applies — there is no script to block.

If your package manager skipped optional dependencies entirely (--omit=optional, --no-optional, or a lockfile resolved without one), nestweaver exits 1 and names the exact optional package to install instead of silently doing nothing. If your organisation disallows this platform package entirely, install a release archive from GitHub or build from source (cargo install --locked --path .) instead.

Platforms

macOS and Linux, on x86_64 and arm64. Every other platform has no published optional package, so nestweaver FAILS with the supported-targets list at invocation time rather than leaving you with a wrapper that silently cannot run; use a release archive or a source build instead. The two Linux platform packages additionally declare libc: ["glibc"] (musl/Alpine is not currently supported). Declaring libc is safe on a Linux-only package; it was not safe on the earlier combined macOS+Linux wrapper, where it made npm reject every macOS install with EBADPLATFORM because libc is not a concept on macOS. The field itself was never the problem — the package it sat on was.

Linux builds target glibc 2.35, which covers Ubuntu 22.04 LTS and newer and Debian 12. The platform package includes the GCC 13 runtime LadybugDB needs beside the binary. Check your glibc with ldd --version; on anything older the binary will not start and the error names a missing GLIBC_ symbol. macOS builds target 13.3.

Upgrading an existing graph

NestWeaver 9.0.0 raised the resolver generation, so a graph built by an earlier release has stale rankings and is missing C/C++ MEMBER_OF and C++ IMPORTS edges. Check with:

nestweaver stale-check

It exits 2 and reports outdated_resolver when a re-index is needed. The remedy needs --force, because a generation-stale repo is at HEAD with nothing modified and a plain re-index takes the incremental path and writes nothing:

nestweaver index --repo <path> --force

Other installation paths

Verified GitHub Release archives, and building from a source checkout with Rust 1.85+, are documented in INSTALL.md.

Links