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

@constellation-network/node-pilot

v0.25.1

Published

An easy deployment and monitoring tool for Constellation nodes.

Downloads

1,403

Readme

@constellation-network/node-pilot

A new CLI generated with oclif

oclif Version Downloads/week

Usage

$ npm install -g @constellation-network/node-pilot
$ cpilot COMMAND
running command...
$ cpilot (--version|-v)
@constellation-network/node-pilot/0.25.1 darwin-arm64 node-v22.15.0
$ cpilot --help [COMMAND]
USAGE
  $ cpilot COMMAND
...

The TL;DR Version

Simply run cpilot with no commands.

$ cpilot

If no command is entered, node-pilot will automatically perform a series of checks to identify the necessary configurations or actions required to bring your validator node online and connect it to the cluster.

Commands

cpilot clean [LAYER]

Remove data and/or logs from a validator node

USAGE
  $ cpilot clean [LAYER] [-d] [-j] [-l]

ARGUMENTS
  LAYER  network layer to clean. e.g. gl0

FLAGS
  -d, --data  remove only data
  -j, --jars  remove only jars
  -l, --logs  remove only logs

DESCRIPTION
  Remove data and/or logs from a validator node

EXAMPLES
  $ cpilot clean

See code: src/commands/clean.ts

cpilot config

Update configuration settings

USAGE
  $ cpilot config

DESCRIPTION
  Update configuration settings

EXAMPLES
  $ cpilot config

See code: src/commands/config.ts

cpilot config get [NAME]

Show all configuration settings or a specific one

USAGE
  $ cpilot config get [NAME]

ARGUMENTS
  NAME  configuration to get

DESCRIPTION
  Show all configuration settings or a specific one

EXAMPLES
  $ cpilot config get

  $ cpilot config get CL_EXTERNAL_IP

  $ cpilot config get gl0:CL_PUBLIC_HTTP_PORT

See code: src/commands/config/get.ts

cpilot config set NAME VALUE

Set a configuration setting

USAGE
  $ cpilot config set NAME VALUE

ARGUMENTS
  NAME   configuration name
  VALUE  the value to set to the configuration

DESCRIPTION
  Set a configuration setting

EXAMPLES
  $ cpilot config set CL_EXTERNAL_IP 127.0.0.1

  $ cpilot config set gl0:CL_PUBLIC_HTTP_PORT 9000

See code: src/commands/config/set.ts

cpilot help [COMMAND]

Display help for cpilot.

USAGE
  $ cpilot help [COMMAND...] [-n]

ARGUMENTS
  COMMAND...  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for cpilot.

See code: @oclif/plugin-help

cpilot info

Display general info about the validator node

USAGE
  $ cpilot info

DESCRIPTION
  Display general info about the validator node

EXAMPLES
  $ cpilot info

See code: src/commands/info.ts

cpilot logs LAYER

view validator node runtime logs

USAGE
  $ cpilot logs LAYER [-a app|hc] [-f] [-n <value>]

ARGUMENTS
  LAYER  network layer to view. e.g. gl0

FLAGS
  -a, --area=<option>       [default: hc] area to view logs for. e.g. "app" or "hc" for health-check
                            <options: app|hc>
  -f, --follow              continuously wait for additional data to be appended
  -n, --numOfLines=<value>  number of lines at the end of the log to display

DESCRIPTION
  view validator node runtime logs

EXAMPLES
  $ cpilot logs

See code: src/commands/logs.ts

cpilot restart [LAYER]

A full shutdown of the validator node, then restart

USAGE
  $ cpilot restart [LAYER] [--autostart] [--update]

ARGUMENTS
  LAYER  network layer to restart. e.g. gl0

FLAGS
  --autostart  restart each running project if it has been stopped
  --update     update each project if a new version is available

DESCRIPTION
  A full shutdown of the validator node, then restart

EXAMPLES
  $ cpilot restart

See code: src/commands/restart.ts

cpilot shutdown

A full shutdown of the validator node

USAGE
  $ cpilot shutdown

DESCRIPTION
  A full shutdown of the validator node

EXAMPLES
  $ cpilot shutdown

See code: src/commands/shutdown.ts

cpilot status

Display node status and configuration settings

USAGE
  $ cpilot status

DESCRIPTION
  Display node status and configuration settings

See code: src/commands/status.ts

cpilot uninstall

Uninstall Node Pilot

USAGE
  $ cpilot uninstall

DESCRIPTION
  Uninstall Node Pilot

EXAMPLES
  $ cpilot uninstall

See code: src/commands/uninstall.ts