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

eths-git

v0.1.1-beta

Published

**eths-git-remote** is a decentralized Git solution designed to manage repositories on-chain. It provides two main components:

Readme

eths-git-remote

eths-git-remote is a decentralized Git solution designed to manage repositories on-chain. It provides two main components:

  1. Wallet CLI – manage your blockchain wallets.
  2. Repo CLI – manage repositories and permissions on-chain.
  3. Git Helper – integrates with standard Git commands using the eths:// protocol.

1. Wallet CLI

The wallet CLI allows you to create, list, and manage wallets. All wallet-based operations require unlocking the wallet first.

Commands

  • List wallets
eths wallet list
  • Create a wallet
eths wallet create
  • Unlock a wallet
eths wallet unlock
  • Lock a wallet
eths wallet lock

🔑 Note: Other wallet-dependent operations require the wallet to be unlocked.

2. Repo CLI

The repo CLI allows you to create repositories, set branches, and manage permissions on-chain.

Commands

  • List repositories
eths repo list --chain-id <chain_id>

# eg.
eths repo list --chain-id  11155111
  • Create a repository
eths repo create <repo_name> --chain-id <chain_id>

# eg.
eths repo create test-repo --chain-id 11155111
  • Set default branch
eths repo default-branch <repo_address> <branch_name> --chain-id <chain_id>

# eg.
eths repo default-branch 0x0533dc9CD8...aF4279Bda20f55 master --chain-id 11155111
  • Grant push access
eths repo grant-push <repo_address> <puser_address> --chain-id <chain_id>

# eg.
eths repo grant-push 0x0533dc9CD84D...dfaF4279Bda20f55 0x1234... --chain-id 11155111
  • Revoke push access
eths repo revoke-push <repo_address> <puser_address> --chain-id <chain_id>

# eg.
eths repo revoke-push 0x0533dc9CD84D...dfaF4279Bda20f55 0x1234... --chain-id 11155111

3. Git Helper

The second CLI serves as a Git helper, allowing you to interact with decentralized Git repositories using standard Git commands.

Protocol

Repositories are accessed via the eths:// protocol:

eths://<repo_address>:<chain_id>

Example:

eths://0x08EdC3E3e8A2882B08CC92afeC9Dc0695EC99a43:11155111

This helper supports conventional Git commands while syncing with the on-chain repository.


Getting Started

Install the CLI:

npm install -g eths-git