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

csema-cli

v1.4.3

Published

CSEMA Labs Command Line Manager

Readme

CSEMA Labs CLI

The official Command Line Interface for managing, provisioning, and starting CSEMA Labs directly from your terminal.

Installation

Install the package globally using npm:

npm install -g csema-cli

Note: You must have Oracle VirtualBox 7.x installed on your system.

Usage

Once installed, the csema command will be available anywhere in your terminal.

1. Check System Status

Verify that your CLI and VirtualBox are configured correctly.

csema status

2. Login

Authenticate with your CSEMA platform account. You will be prompted to enter your email and an OTP sent to your inbox.

csema login

3. List Labs

View all machine challenges available to your account tier.

csema list

4. Interactive Dashboard

Want to avoid typing commands? Open the fully interactive dashboard to manage your labs using your arrow keys!

csema ui

5. Check Local Machine Status

See exactly which labs are currently installed on your computer and whether they are running or stopped.

csema active

6. Setup a Machine

Download and import a specific lab into VirtualBox. (Find the ID using csema list).

csema setup <lab-id>

7. Start/Stop a Machine

# Boot up the machine
csema start <lab-id>

# Shut it down safely
csema stop <lab-id>

8. Delete a Machine

Remove the machine entirely from your system to free up disk space.

csema delete <lab-id>

9. Network settings (VirtualBox)

See how each NIC is attached (NAT, bridged, host-only) and change it without opening VirtualBox Manager. Bridged puts the VM on your LAN (you pick the host interface). Host-only isolates traffic to the host ↔ VM (typical names: vboxnet0). Most changes require the VM to be powered off; the CLI will offer to stop it first.

# Show adapters for the VM that belongs to this lab
csema network show <lab-id>

# Interactive wizard (slot, mode, bridge/host-only lists)
csema network set <lab-id>

# Scriptable example: NIC 1 bridged to Wi‑Fi / Ethernet (name from `VBoxManage list bridgedifs`)
csema network set <lab-id> --slot 1 --mode bridged --bridge-adapter "Intel(R) Wi-Fi 6 AX201" -y

# Host-only
csema network set <lab-id> --slot 1 --mode hostonly --hostonly-adapter vboxnet0 -y

In csema ui, choose Network settings (NAT / bridged / host-only) after selecting an installed lab.

Features

  • Interactive TUI: Fully interactive terminal UI for navigating and managing labs.
  • Network control: Switch NICs between NAT, bridged, and host-only from the CLI or the interactive UI.
  • 1-Click Provisioning: Automatically downloads .rar archives and extracts the .ova lab seamlessly.
  • Auto-Discovery & Live Status: Locates your VirtualBox installation dynamically and tracks VM state in real-time.
  • Auto-Updates: Automatically notifies you when a new version of the CLI is published.
  • Secure: Uses stateless OTP-based authentication via the CSEMA API with strict file permissions.