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

dynam-ncp

v1.5.1

Published

Dynam NCP - multi-layered DPI-bypass and network privacy platform (binary wrapper). Installs the prebuilt `ncp` CLI from GitHub Releases.

Readme

dynam-ncp

npm wrapper for Dynam (NCP) — a multi-layered DPI-bypass and network privacy platform written in C++17. This package downloads the prebuilt ncp CLI binary for your platform from GitHub Releases during postinstall and exposes it as the dynam-ncp (alias: ncp) command.

Requirements

  • Node.js >= 16
  • Platform: linux-x64, darwin-x64, darwin-arm64 (via Rosetta 2), win32-x64
  • On Linux/macOS a system tar is used to unpack the release archive (Windows 10+ ships bsdtar as tar.exe, which also handles .zip)

Install

npm install -g dynam-ncp

The postinstall script downloads the matching asset (ncp-linux-x64.tar.gz, ncp-macos-x64.tar.gz or ncp-windows-x64.zip) from the latest GitHub release, verifies it by running ncp --help, and installs it into the package's vendor/ directory.

If your platform is not supported or the download fails, the install does not fail — you get a clear warning and can retry with npm rebuild dynam-ncp.

Usage

All arguments are forwarded to the native ncp CLI:

# Show all commands
dynam-ncp --help

# Start PARANOID mode (all protection layers)
sudo dynam-ncp run

# Local SOCKS5/HTTP desync proxy (no admin needed)
dynam-ncp proxy --port 1080

# Single Packet Authorization: generate a key pair
dynam-ncp spa keygen --out my_spa

# Auto-select best DPI bypass strategy
dynam-ncp blockcheck

# Show version
dynam-ncp version

See the full CLI documentation in the main repository.

Environment variables

| Variable | Description | |---|---| | DYNAM_NCP_SKIP_DOWNLOAD=1 | Skip the binary download during install (CI/tests). | | DYNAM_NCP_BIN=/path/to/ncp | Make the wrapper use an existing binary instead of the vendored one. | | DYNAM_NCP_RELEASE=v1.5.0 | Download from a specific release tag instead of latest. | | DYNAM_NCP_BASE_URL=https://... | Override the releases base URL (mirrors/testing). |

How it works

  • install.js — platform/arch detection, download (follows GitHub CDN redirects), extraction, chmod +x, --help smoke test, graceful degradation.
  • bin/dynam-ncp.js — thin wrapper: spawns the native binary with inherited stdio and propagates exit codes/signals.
  • .github/workflows/npm-publish.yml (in the repo root) publishes this package on every GitHub release; a maintainer only needs to add the NPM_TOKEN repository secret.

License

AGPL-3.0-only, same as the Dynam project.