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

irys-git

v1.9.1

Published

Irys based git-like CLI tool for decentralized repository management

Readme

Irys Git (IGit)

Irys Git is a CLI tool that provides a Git-like workflow on top of Irys (Arweave-based) permanent storage layer.
Manage your roadmap, code, and history in a decentralized, censorship-resistant way with just a Solana wallet.


Features

  • Decentralized Storage: All commits are stored on the Irys network for permanent preservation and verifiability.
  • Solana Wallet Authentication: Private keys are encrypted with AES-256-GCM and securely stored in ~/.igit.
  • Git-Compatible Workflow: Support for familiar commands like push / pull / clone / branch / checkout.
  • Mutable Uploads: Overwrite (update) capability for the same branch to reduce costs.
  • Permission Management: Control collaborative work with add-contributor / remove-contributor / list-contributors.
  • Security Restrictions: Upload cost limit (default 1 SOL), dangerous extension blocking, file count & request limits.
  • Rate Limiting: Per-address request rate limiting to prevent abuse.

Installation

# Global installation (recommended)
npm install -g irys-git

# Or local installation
npm install irys-git --save-dev

Node.js 18+ is recommended.


Quick Start

# 1) Login (enter Solana private key, set local password)
igit login

# 2) Initialize existing folder as Irys repository
igit init MyRepo

# 3) Upload changes (based on current branch)
igit push

# 4) Clone from another location
igit clone githirys.xyz/<wallet-address>/<repository-name>

# 5) Sync latest changes
igit pull [repository] [branch]

Command Summary

| Command | Description | | ------- | ----------- | | login | Set up Solana private key and encrypt for storage | | init [name] | Initialize current directory as Irys repository | | push [branch] | Upload current HEAD snapshot to Irys | | pull [repo] [branch] | Download latest snapshot and overwrite | | clone <url> | Clone Irys repository (Git or Irys-metadata mode) | | list [repo] | List my repositories/branches | | repo-status | Check local repository status | | checkout [branch] | Switch branch (create with --create if missing) | | switch <branch> | Git 2.23 style branch switching | | branch | List/create/delete branches, query remote | | add-contributor <addr> | Add contributor (owner only) | | remove-contributor <addr> | Remove contributor (owner only) | | list-contributors | List contributors | | Basic Git commands | Proxy support for most regular Git commands like git add, git log |

Use igit --help to see all options.


URL Format

  • Wallet address based: githirys.xyz/<SolanaAddress>/<Repository>
  • Nickname based: githirys.xyz/<Nickname>/<Repository> (nickname → address auto-resolution)
  • Transaction ID: irys://<TransactionId> or direct input of <43+ characters>

Permission Management Workflow

  1. Owner init & push repository, fixed with git-owner tag.
  2. Owner registers contributor addresses with add-contributor, storing permission list at mutable address.
  3. Contributors get automatic edit permission check during push and upload to original repository.
  4. Can be removed anytime with remove-contributor, changes update to same mutable address.

Security ⚠️

  • Private keys are encrypted/decrypted only locally and never transmitted over network.
  • If upload cost exceeds 1 SOL, console confirmation is required before proceeding.
  • The following extensions are blocked from upload: .exe, .bat, .cmd, .scr, .com, .pif, .jar
  • Default rate limit of 10 calls per minute (varies by command).

Examples

# Create new branch and switch
igit branch -b feature/login

# Code changes → Git commit
git add .
git commit -m "feat: add login functionality"

# Upload to Irys
igit push feature/login

# Grant contributor permission instead of PR
igit add-contributor 7eYZ...AbC

Development & Testing

git clone https://github.com/yourname/irys-git
cd irys-git
npm install
npm run dev

License

MIT