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

toolkit-p2p

v0.7.0

Published

Complete P2P operating system - Install everything in one command

Readme

toolkit-p2p

The complete P2P operating system in one package

Install everything with a single command. Get the full toolkit-p2p stack instantly.

One-Command Install

pnpm add toolkit-p2p

That's it! This installs all 15 core packages.

What You Get

Everything you need to build decentralized apps:

  • ✅ @toolkit-p2p/identity - Ed25519 cryptographic identity
  • ✅ @toolkit-p2p/feed - Social feeds, posts, threads, reactions
  • ✅ @toolkit-p2p/social - Web of Trust, follow/block
  • ✅ @toolkit-p2p/sync - CRDTs (LWW-Map, G-Counter, Merkle trees)
  • ✅ @toolkit-p2p/graph - Graph database
  • ✅ @toolkit-p2p/bulletin - Real-time shared state
  • ✅ @toolkit-p2p/mailbox - End-to-end encrypted messaging
  • ✅ @toolkit-p2p/transport - WebRTC mesh networking
  • ✅ @toolkit-p2p/mesh-cache - Content-addressed storage
  • ✅ @toolkit-p2p/cron - Job scheduling
  • ✅ @toolkit-p2p/push - Push notifications
  • ✅ @toolkit-p2p/search - Full-text search
  • ✅ @toolkit-p2p/crypto - AES-256-GCM encryption
  • ✅ @toolkit-p2p/core - Utilities and security
  • ✅ @toolkit-p2p/codec - CBOR encoding

Total: 15 packages, 900+ tests, production-ready

Quick Start

// Import everything
import * as toolkit from 'toolkit-p2p';

// Or import specific modules
import { loadOrCreateIdentity } from 'toolkit-p2p/identity';
import { PostManager } from 'toolkit-p2p/feed';
import { SocialGraph } from 'toolkit-p2p/social';

// Build a social network
const identity = await loadOrCreateIdentity();
const social = new SocialGraph(identity.did);
const posts = new PostManager(identity.did, social);

// Create a post
const post = await posts.createPost({
  content: 'Hello, decentralized world!',
  tags: ['#p2p']
});

// Done! No servers, no database, no AWS.

Why This Package?

Single install instead of:

# Old way (15 separate installs)
pnpm add @toolkit-p2p/identity
pnpm add @toolkit-p2p/feed
pnpm add @toolkit-p2p/social
# ... 12 more lines

New way (one install):

pnpm add toolkit-p2p

Saves time. Gets you building faster.

What You Can Build

  • Social Networks (Twitter, Mastodon alternatives)
  • Chat Apps (Signal-level E2EE)
  • Collaborative Tools (Real-time, Google Docs-style)
  • File Sharing (BitTorrent-like, P2P)
  • Community Platforms (Forums, Reddit alternatives)
  • Knowledge Bases (Wikis, Notion alternatives)

All in 20-40 minutes. All with zero servers. All free forever.

Stats

  • Packages: 15 included
  • Tests: 900+ passing
  • Code: ~40,000 lines
  • License: MIT
  • Cost: $0/month
  • Servers: 0

Performance

With optional Rust modules (3-10x faster):

  • Cryptography: 10x faster
  • Vector search: 7x faster
  • Graph queries: 5x faster

Enable Rust:

process.env.RUST_CRYPTO = 'true';
process.env.RUST_VECTOR = 'true';
process.env.RUST_GRAPH = 'true';

Documentation

  • Website: https://toolkit-p2p.com
  • GitHub: https://github.com/Toolkit-CLI/toolkit-p2p
  • Complete Guide: See main README
  • Test Report: 1,115+ tests verified

License

MIT - Use it however you want. Build commercial products. No restrictions.


toolkit-p2p: The easiest way to build decentralized apps.

One install. No servers. Production-ready.