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

webtender

v0.3.3

Published

WebTender is a new way to manage & monitor your servers in one place. It's a platform that makes it easy to manage, monitor and share your servers with your team.

Readme

WebTender Cli

WebTender is a new way to manage & monitor your servers in one place. It's a platform that makes it easy to manage, monitor and share your servers with your team.

webt CLI

WebTender CLI implements the REST API and SSH over the hardened WT WebSocket Protocol. See the REST API Docs here

Features

  • SSH into servers shared between your team
  • Launch WebTender hosted VMs from the command line
  • Add any server with SSH access to your WebTender account
  • Manage your servers across cloud providers
  • Manage status monitors for HTTPS, TCP & push health checks
  • Scan for viruses and malware with WebTender's Anti-Virus API (WebAV)
  • (Upcoming) Secure your servers with Multi Factor Authentication (TOTP Authenticator apps)
  • (Upcoming) Copy files between servers and your local machine with webt scp
  • (Upcoming) Share servers with your team
  • (Upcoming) SSH Session recording, audit log (opt in)
  • (Upcoming) Deploy scripts with GitHub actions

Getting Started

Install globally from npm:

npm install --global webtender
bun add --global webtender
pnpm add --global webtender

Or download a standalone binary for your platform from the releases page

To run:

webt --help

# Or
bunx webt --help
npx webt --help
pnpx webt --help

Examples

# Login with your API Key, follow the prompts
webt login

# Launch a WebTender-hosted Instance
webt server launch --name my-server --image debian12 \
    --cpu 2 --memory-gb 2 --storage-gb 8 --provider webtender --region nz-1

# Add an existing server with SSH access
webt server add 10.1.2.3 --hostname my-external-server \
    --port 22 --user tender --jump-host d7b54978-21f0-4a3b-99f0-993a478b22df

# list all servers
webt server list --page 2

# Check VM's running state, CPU, RAM, and local IP address
webt server instance-status my-server

## Check if the server is up and running
webt server ssh-check my-server

# Jump in, no need to configure and share SSH keys
webt ssh my-server

# Copy files to and from your server
webt scp ./local-file.txt my-server:remote-file.txt
# Copy a directory
webt scp my-server:remote-directory/ ./ -r

# Destroy the server
webt server delete my-server

# Append --json to get JSON output for scripting
# works with most commands.
webt server list --json

Authentication

webt login will prompt you for your WebTender API Key and save it to ~/.webtender-config.json

Manage your WebTender API Keys here

You can run webt login --check or webt me to test your API Key.

Change your API Key with webt login --api-key (your key)

You can also set your API Key with the WEBTENDER_API_KEY environment variable in a .env local to the working directory of webt. Environment variables override the ~/.webtender-config.json file.

Building from source

git clone [email protected]:webtender/cli.git webtender-cli
cd webtender-cli

# Use your package manager of choice
bun install || pnpm install || npm install

# Run TS directly with Bun
bun ./src/main.ts --help

# Build for Node support, creates a commonjs bundle,
# Output: dist/webt.cjs
bun run build || pnpm build || npm run build

# Run your build
node dist/webt.cjs --help
bun dist/webt.cjs --help

# Package as a binary
pnpx pkg dist/webt.cjs --output dist/webt

# Link `webt` globally
sudo npm link
webt --help

Supported Platforms

| Platform | Status | Notes | | ----| --- | --- | | Linux x64 | Supported | Tested on Debian 11/12 and Ubuntu 22.04/23.04 | | Linux arm64 | Supported | Tested on EC2 tg4 series with Debian 12 | | Windows x64 | Experimental | Lightly tested on Windows 10 / 11. | | Windows arm64 | Not Tested | | | MacOS (Darwin) x64 | Not Tested | | | MacOS (Darwin) arm64 | Not Tested | |

Dependencies

This CLI has Bun and Node runtime support!

| JS Environment | Status | Notes | | ---- | --- | --- | | Node 20 | Tested | Well tested. | | Node 18 | Tested | Well tested. | | Node <= 16 | Not Tested | Not recommended. | | Bun v1.x | Experimental | SSH functionality not working. Support for this is coming |

Security

Please report any security issues to [email protected]