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

ocweb

v0.0.4

Published

Interacts with OCWebsites from web3://ocweb.eth

Readme

OCWeb

This repository contains :

  • OCWebsite : The smart contracts to make an OCWebsite
  • ocweb : An CLI tool to interact with an OCWebsite
  • web3://ocweb.eth (HTTPS gateway link) is a web3:// website which lets you mint OCWebsites.

web3:// protocol

In short, web3:// is like https://, but websites are smart contracts, and the blockchain is the server. This is standardized by several Ethereum ERCs. Learn more with the presentation website and documentation website. Try live with the web3:// sandbox. Download the native EVM Browser or learn about the HTTPS gateways.

OCWebsites

OCWebsites are web3:// websites prepackaged with a plugin system (themes, features, ...), a versioning system and an admin interface. They appear as NFTs in your wallet.

They are useful for both :

  • Developers: ability to upload a frontend (via admin or CLI) to your OCWebsite, manage multiple versions (switch live version), create and add your own plugins
  • Non-developers : Use the admin interface to configure themes, add and publish pages (at the moment, only one theme available)

ocweb CLI

ocweb is a CLI tool to interact with OCWebsites. Install it with npm i ocweb

ocweb [options] <command>

Commands:
  ocweb mint <chainId> <subdomain>          Mint a new OCWebsite on a blockchain
  ocweb list <chainId>                      List the OCWebsites owned by the wallet
  ocweb factory-infos <chainId>             Advanced: Show infos about the factory contract
  ocweb version-ls                          List the versions of the OCWebsite
  ocweb version-add [title]                 Add a new version in the OCWebsite
  ocweb version-set-live <website-version>  Set the live version of the OCWebsite
  ocweb version-set-viewable <isViewable>   Set the live version of the OCWebsite
  ocweb upload [arguments..]                Upload a static frontend to the website. Require the Static Frontend plugin installed.
  ocweb ls [folder]                         List the files in the static frontend
  ocweb rm <files..>                        Remove a file from the static frontend

Options:
      --help                Show help                                                                                              [boolean]
      --version             Show version number                                                                                    [boolean]
  -r, --rpc                 Override the default RPC provider URL. Example: https://your.provider.com/                              [string]
  -k, --private-key         The private key of the wallet to use for signing transactions (Environment variable: PRIVATE_KEY)       [string]
      --skip-tx-validation  Skip the validation prompt for transactions. WARNING: This will make you sign transactions right away. Use with
                            caution.                                                                              [boolean] [default: false]

Example CLI use: Upload a static frontend

Mint an OCWebsite, build your static frontend and execute the following command:

PRIVATE_KEY=0xabc...def \
npx ocweb upload --web3-address web3://0xab...cd:10 dist/* / --sync

where:

  • PRIVATE_KEY=0xabc...def is the private key of the Ethereum account that will do the uploading. Must be the owner of the OCWebsite.
  • web3://0xab...cd:10 is the web3:// address of your OCWebsite
  • dist/ is the folder containing your static frontend files
  • --sync is optional, and indicate that files that are on the OCWebsite, but not on the local dist/* folder, will be deleted. Useful for an update.

OCWebsite versioning

New OCWebsites comes with an initial version. You can create a new version anytime, which will duplicate another version. Each version is totally independant, including the installed plugin list and their configuration.

  • You can change the version being the live version served by your OCWebsite.
  • You can enable a viewer for non-live versions, in order to preview them, and/or to make available a historical version.
  • You can lock a version, which becomes immutable.

OCWebsite plugins

Several plugins come pre-installed with a newly minted OCWebsite.

Local deployment for development

To build and deploy locally, you will need Foundry.

Installation

git clone [email protected]:nand2/ocweb.git
cd ocweb
git submodule init
git submodule update --init --recursive
npm ci
cp .env.example .env

Edit .env, add on PRIVATE_KEY_LOCAL the private key of the first account of anvil (the local dev blockchain of Foundry) (private key written when you run anvil).

Local deployment

./scripts/deploy.sh

It will output the web3:// address of the factory website, to view with EVM Browser or with a web3protocol-http-gateway.

Note: A forge clean (cleaning of the previously compiled contract) may be required (due to OpenZeppelin Upgrade script checks).

Add external plugins to the local deployment

Clone the plugin repository in the same folder than the ocweb folder (so both ocweb and your plugin folder are in the same folder). Then edit your .env with:

OCWEB_PLUGINS_BUILD="<folder-name>:<is-added-to-ocweb-library-boolean>:<is-installed-by-default-boolean> ..."

Running ./scripts/deploy/sh will then also build the plugin. As an example :

OCWEB_PLUGINS_BUILD="ocweb-plugin-starter-kit:true:true"

This will build the OCWebsite Starter Kit Plugin, with it being added to the OCWeb library (true) and installed by default in a newly minted OCWebsite (true)

Local developer server of web3://ocweb.eth

web3://ocweb.eth is a Vite-based Vue project. To launch its developer server,

  • Make a local deployment as explained in the previous section
  • At the end of the ./script/deploy.sh output, note the address of the OCWebsiteFactory contract, and of the factory website.
  • Edit variables.json: put the address of the OCWebsiteFactory in the factory-hardhat field (keeping the :31337 at the end), and the address part (without web3://) of the factory website in the self field.
  • Run npm run dev-factory

Develop your own OCWebsite plugin

See the plugin documentation