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

nodevisor

v0.0.83

Published

TypeScript Infrastructure Automation Platform

Readme

nodevisor

The umbrella package — one import for the entire Nodevisor platform.

Part of Nodevisor — TypeScript Infrastructure Automation Platform

Install

npm install nodevisor

Quick Start

import $, { OS, FS, Docker, DockerCluster, DockerNode, NodeWeb } from 'nodevisor';

// Run shell commands
const hostname = await $`hostname`.text();

// Use modules on remote servers
const $server = $.connect({ host: '10.0.0.10', username: 'root' });
const arch = await $server(OS).arch();
const content = await $server(FS).readFile('/etc/hostname');

// Build and deploy clusters
const cluster = new DockerCluster({
  name: 'production',
  nodes: [new DockerNode({ host: '10.0.0.10' })],
});

cluster.addDependency(new NodeWeb({
  name: 'api',
  appDir: './apps/api',
  domains: ['api.example.com'],
  port: 3000,
}));

await cluster.deploy();

What's Included

nodevisor re-exports every module, type, and utility from the Nodevisor ecosystem.

System Modules

| Export | Package | Description | |--------|---------|-------------| | OS | @nodevisor/os | Hostname, arch, uptime, reboot | | FS | @nodevisor/fs | File operations (read, write, chmod, etc.) | | Env | @nodevisor/env | Environment variables | | Packages | @nodevisor/packages | Package manager abstraction | | Services | @nodevisor/services | Systemd service control | | PWSH | @nodevisor/pwsh | PowerShell command builder |

Security Modules

| Export | Package | Description | |--------|---------|-------------| | Auth | @nodevisor/auth | Password management | | Users | @nodevisor/users | User account management | | Groups | @nodevisor/groups | Group management | | AuthorizedKeys | @nodevisor/authorized-keys | SSH authorized keys | | SSH | @nodevisor/ssh | SSH server management | | UFW | @nodevisor/ufw | Firewall management |

Orchestration

| Export | Package | Description | |--------|---------|-------------| | Docker | @nodevisor/docker | Docker engine, Swarm, Compose, Stack | | Cluster | @nodevisor/cluster | Abstract cluster primitives | | Builder | @nodevisor/builder | Image builder interface | | Registry | @nodevisor/registry | Container registry interface | | AWS | @nodevisor/aws | AWS CLI and ECR |

Pre-Built Services

import {
  Traefik, Postgres, Redis,
  NodeWeb, Nextjs, WireGuard, Whoami,
  DockerBuilder, NodeBuilder,
  DockerRegistry, DockerRegistryLocal,
  DockerCluster, DockerNode, DockerSwarm,
} from 'nodevisor';

When to Use This Package

Use nodevisor when you want convenience — one dependency, one import source, everything available.

import $, { Docker, UFW, Users, SSH } from 'nodevisor';

Use individual packages when you want smaller bundles or only need specific functionality:

import $ from '@nodevisor/shell';
import Docker from '@nodevisor/docker';

Related Packages

Documentation

Full documentation available at nodevisor.com/docs/packages/nodevisor

License

Nodevisor uses a single O'Saasy license across all packages and applications. See the full terms in LICENSE.