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

@inaya-network/node-daemon

v0.1.0

Published

Minimal Inaya Network node operator daemon -- registers your node on-chain and reports heartbeat/telemetry. Does not store or serve shards.

Downloads

73

Readme

@inaya-network/node-daemon

Minimal node operator daemon for the Inaya Network. Registers your node on-chain and reports heartbeat/telemetry to the coordinator backend. Runs as a plain Node.js process — no Docker.

This daemon does not store or serve shards. It only handles registration, wallet/key custody, and heartbeat telemetry. Shard storage/serving is a separate, not-yet-built piece of the system.

Install

npm install -g @inaya-network/node-daemon

Requires Node.js 18+. Works on Windows, macOS, and Linux.

Usage

# 1. Store your node operator wallet (encrypted at rest with a password you choose)
inaya-node-daemon login

# 2. Register on-chain + with the coordinator backend, declaring your capacity
inaya-node-daemon register 500

# 3. Start reporting heartbeats (foreground -- Ctrl+C to stop)
inaya-node-daemon start

For unattended/CI use, login accepts INAYA_PRIVATE_KEY and INAYA_DAEMON_PASSWORD from the environment instead of interactive prompts.

Running unattended (background service)

start above runs in the foreground. To keep it running across reboots/logouts without a terminal window open, install it as a native background service:

inaya-node-daemon service install

This uses each OS's own service manager — a real Windows Service via node-windows, a systemd unit via node-linux, or a launchd agent via node-mac (the latter two are not bundled by default; install them yourself with npm install node-linux / npm install node-mac first if you're not on Windows). You'll be prompted for your daemon password once, at install time — it's stored in the service's own environment config so it can decrypt the wallet on unattended restarts, the same trust boundary any CI secret store uses.

inaya-node-daemon service uninstall

Config

Stored at ~/.inaya/node-daemon/config.json (mode 0600), private key always encrypted (PBKDF2 + AES-256-GCM), never in plaintext. Separate from @inaya-network/cli's own ~/.inaya/config.json so the two can run different wallets on the same machine.

| Env var | Purpose | |---|---| | INAYA_PRIVATE_KEY | Wallet private key for login (skips the interactive prompt) | | INAYA_DAEMON_PASSWORD | Password to encrypt/decrypt the stored key (skips the interactive prompt; required for unattended/service use) | | INAYA_RPC_URL | BSC Testnet RPC (default: Binance's public endpoint) | | INAYA_NODE_REGISTRY_ADDRESS | Override the InayaNodeRegistry contract address | | INAYA_API_BASE_URL | Override the coordinator backend base URL (default: production) | | INAYA_HEARTBEAT_INTERVAL_MS | Heartbeat interval in ms (default 300000 / 5 min) |