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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@webprotocol/nwep

v0.1.4

Published

Node.js bindings for quiche-nwep - A QUIC/HTTP/3/NWEP implementation.

Readme

@webprotocol/nwep

Node.js bindings for quiche-nwep - A QUIC/HTTP/3/NWEP implementation.

Installation

Important: This package must be built from within the quiche-nwep workspace. It cannot be installed standalone via npm.

From the quiche-nwep repository:

# Clone the repository
git clone https://github.com/usenwep/quiche-nwep.git
cd quiche-nwep

# Navigate to the node package
cd node

# Install dependencies and build
npm install

The build process will automatically compile the native Rust bindings for your platform.

Requirements

  • Rust 1.85+ (install from rustup.rs)
  • Node.js 12.22+ / 14.17+ / 15.12+ / 16.0+
  • Build tools:
    • Linux: build-essential, cmake, perl
    • macOS: Xcode Command Line Tools
    • Windows: Visual Studio Build Tools or MinGW-w64

Usage

const nwep = require('@webprotocol/nwep')

// Your code here

Building

# Build the native addon
npm run build

# Build in debug mode
npm run build:debug

The build script automatically:

  • Detects your current platform (Linux, macOS, Windows, etc.)
  • Checks for Rust installation
  • Compiles the native addon using napi-rs
  • Places the compiled .node file in the package directory

Development

This package is part of the quiche-nwep workspace and depends on several workspace crates:

  • quiche - Core QUIC/HTTP/3 implementation
  • octets - Buffer manipulation
  • qlog - QUIC logging
  • And other workspace dependencies

All dependencies are resolved through the workspace, which is why standalone installation is not supported.

Architecture

The package provides Node.js bindings to the Rust quiche library using napi-rs, enabling:

  • High-performance QUIC connections
  • HTTP/3 support
  • NWEP protocol support
  • Native speed with JavaScript convenience

License

MIT (for Node.js bindings)

The underlying quiche library is licensed under BSD-2-Clause.

Contributing

Please see the main quiche-nwep repository for contribution guidelines.

Links