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

light-nodes

v0.12.4-rc2

Published

This package is designed for running light nodes on the Arabica devnet and Mocha testnet. It is currently in development, but can be used with the following versions:

Downloads

79

Readme

light nodes

This package is designed for running light nodes on the Arabica devnet and Mocha testnet. It is currently in development, but can be used with the following versions:

It was built on macOS for macOS and Linux.

Installation

You can install the package globally using the following command:

Yarn

yarn global add light-nodes

Start a node on Mainnet with yarn

This installs the package, installs a Mainnet Beta light node, and runs it.

yarn global add light-nodes && mainnet && start

Start a node on Mocha with yarn

This installs the package, installs a Mocha testnet light node, and runs it.

yarn global add light-nodes && mocha && start-m

Start a node on Arabica with yarn

This installs the package, installs a Arabica devnet light node, and runs it.

yarn global add light-nodes && arabica && start-a

Uninstall with yarn

To uninstall, run:

yarn global remove light-nodes

NPM

npm i -g light-nodes

Start a node on Mainnet with npm

This installs the package, installs an Mainnet light node, and runs it.

npm i -g light-nodes && mainnet && start

Start a light node on Arabica with npm

This installs the package, installs a Arabica light node, and runs it.

npm i -g add light-nodes && arabica && start-a

Start a light node on Mocha with npm

This installs the package, installs a Mocha light node, and runs it.

npm i -g add light-nodes && mocha && start-m

Uninstall with NPM

To uninstall, run:

npm uninstall -g light-nodes

Usage

After installing the package, you can use the light nodes on Mainnet Beta, Arabica devnet, and Mocha testnet. Here's a basic guide:

Help

To show the help menu, use:

light-nodes-help

Mainnet

To initialize a light node on the Mainnet Beta, use the mainnet command:

mainnet

Then start the node:

start

Mocha

To initialize a light node on the Mocha devnet, use the mocha command:

mocha

Then start the node:

start-m

Arabica

To initialize a light node on the Arabica devnet, use the arabica command:

arabica

Then start the node:

start-a

Cleanup

To remove all files associated with light-nodes, use the clean-light-nodes command:

clean-light-nodes

This removes:

CELESTIA_BINARY="$HOME/go/bin/celestia"
CELESTIA_NODE="$HOME/celestia-node"
DATA_STORE_ARABICA="$HOME/.celestia-light-arabica-11"
DATA_STORE_MOCHA="$HOME/.celestia-light-mocha-4"
DATA_STORE_MAINNET="$HOME/.celestia-light"

To uninstall Golang, run this in your terminal:

rm -rf /usr/local/go

Troubleshooting

Linux

To upgrade your OS:

sudo apt update && sudo apt upgrade -y

If you do not have them already, download essential packages for downloading files, compiling, and building the node:

sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential git make ncdu -y