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

@minip2p/react-native

v0.3.1

Published

React Native bindings for minip2p

Readme

@minip2p/react-native

React Native bindings for minip2p, with the platform-neutral @minip2p/core API and bundled Android and iOS libraries.

The package is pre-1.0 and may introduce breaking changes between releases.

Requirements

  • React Native 0.85 with the New Architecture and Hermes
  • iOS 15.1 or newer
  • Android API 24 or newer

Expo Go cannot load custom Rust and C++ native libraries. Expo projects must use a development build.

Installation

pnpm add @minip2p/react-native

Rebuild the native app after installing the package.

Usage

import { Minip2p, generateSecretKey } from "@minip2p/react-native";

const endpoint = Minip2p.create({
  secretKey: generateSecretKey(),
  mdns: true,
  protocols: ["/example/files/1"],
});

const unsubscribe = endpoint.on("peerReady", ({ peerId }) => {
  console.log("peer ready", peerId);
});

endpoint.subscribe("/example/chat/1");
endpoint.publish("/example/chat/1", "hello");

const path = await endpoint.connectAddr(remoteAddress);
await endpoint.waitPeerReady(path.peerId);
const rttMs = await endpoint.ping(path.peerId);

const stream = await endpoint.openStream(path.peerId, "/example/files/1");
stream.write(new Uint8Array([1, 2, 3]));
stream.closeWrite();

unsubscribe();
endpoint.close();

Minip2p.create starts the native driver. useMinip2p manages an endpoint for a React component, while bindAppState keeps its foreground state synchronized.

Configuration defaults to gossipsub with signed messages and no relay or discovery. Set mdns: true for local discovery and ensure the host app has local-network and multicast permissions.

Important behavior

  • Operations support timeouts and AbortSignal cancellation.
  • Native events are delivered FIFO through a bounded queue; handle queueOverflow by refreshing queryable state.
  • Use a named stream handler to claim inbound streams.
  • Unsigned pubsub payloads and peer IDs are attacker-controlled.
  • close() rejects pending work, closes streams, and releases the native endpoint.

License

MIT