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

gotoni

v1.0.0

Published

![gotoni running a remote command](./docs/Terminal.gif)

Readme

gotoni

gotoni running a remote command

Automate Lambda.ai with Ansible-inspired Go CLI

Installation

curl -fsSL https://raw.githubusercontent.com/atoniolo76/gotoni/main/install.sh | bash

Setup

Export your Lambda API key:

export LAMBDA_API_KEY=your_token_here

Workflow

1. Launch an Instance (with Filesystem)

Launch an instance with a persistent filesystem attached. If the filesystem doesn't exist, it will be created. The --wait flag ensures the command polls until the instance is ready.

gotoni launch my-project \
  -t gpu_1x_a10 \
  --filesystem my-data \
  --wait

2. Open in IDE

Once launched, instantly open the remote workspace in your preferred IDE (defaults to Cursor).

Prerequisite: Ensure you have installed the command-line tool for your IDE.

  • Cursor: Cmd+Shift+P > "Install 'cursor' command"
  • VS Code: Cmd+Shift+P > "Install 'code' command"
gotoni open my-project

Or force VS Code:

gotoni open my-project --code

3. Share Access Securely

Share SSH access with a friend or colleague using Magic Wormhole.

Sender:

gotoni share my-project
# Generates a secure code like: 7-guitarist-revenge

Receiver:

gotoni receive 7-guitarist-revenge
# Automatically configures SSH keys and host entry
ssh my-project

Add Tasks on creation

Create tasks that can be executed on instances during launch. You can also start services that will run in the background with systemd, such as an inference server.

Example: Install and Build vLLM

gotoni tasks add  --name "install depedencies" --command "pip install vllm"

gotoni tasks add --name "run vllm" --command "vllm serve moonshotai/Kimi-K2-Thinking" --depends-on "install dependencies" --type service

Launch with Tasks

gotoni launch ml-instance
  -t gpu_1x_a100
  -r us-west-1
  --wait
  --tasks "install depedencies,run vllm"

Commands Reference

  • gotoni launch - Launch instances (supports waiting, filesystems, and tasks)
  • gotoni open - Open remote instance in Cursor/VS Code
  • gotoni share - Securely share SSH access
  • gotoni receive - Receive SSH access and auto-configure
  • gotoni tasks - Manage automation tasks
  • gotoni provision - Run tasks on an existing instance
  • gotoni list - List active instances
  • gotoni available - List available instance types and regions
  • gotoni run - Execute remote commands
  • gotoni delete - Terminate instances
  • gotoni filesystems - Manage filesystems
  • gotoni ssh-keys - Manage SSH keys

Configuration

Configuration is automatically managed in a local SQLite database.