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

rlpsdk

v0.3.2

Published

Native rl-platform SDK (Daytona-compatible interface).

Readme

rlpsdk (TypeScript)

npm

Native rl-platform SDK with a Daytona-compatible interface (v0.190.x-shaped) so existing Daytona code is near drop-in. Drives rl-platform's native API (/vms, /daytona/snapshots) and the toolbox proxy directly.

  • npm package: rlpsdk
  • Ships: ESM + CJS builds with TypeScript declarations
  • Requires: Node >= 18

Install

npm install rlpsdk        # or: pnpm add rlpsdk / yarn add rlpsdk

Quickstart

import { Daytona } from 'rlpsdk'

const daytona = new Daytona({
  apiUrl: 'http://<api-host>:8088',        // native API root
  apiKey: 'rlp_...',                        // rlp-api mint-key <name>
  toolboxUrl: 'http://<proxy-host>:9000/toolbox',
})

// Cache a registry image as a snapshot (image alias).
const snap = await daytona.snapshot.create(
  { name: 'py312', image: 'python:3.12-slim', resources: { cpu: 1, memory: 1, disk: 1 } },
  { onLogs: console.log },
)

// Create a sandbox from it and run a command.
const sandbox = await daytona.create({ snapshot: 'py312' })
const r = await sandbox.process.executeCommand('echo hello')
console.log(r.exitCode, r.result)

await daytona.delete(sandbox)

Configuration

| Field / env | Purpose | |-------------|---------| | apiUrl / RLP_API_URL / DAYTONA_API_URL | Native control-plane API root | | apiKey / RLP_API_KEY / DAYTONA_API_KEY | Bearer API key (rlp_...) | | toolboxUrl / RLP_TOOLBOX_URL | Toolbox proxy base (.../toolbox); required for fs/git/process | | target / RLP_TARGET | Optional region/target label |

rl-platform specifics vs Daytona

  • No warm stop/start. daytona.stop() / sandbox.stop() / sandbox.archive() throw DaytonaNotSupportedError (HTTP 501 semantics). start() tolerates an already-running sandbox but cannot revive a stopped/failed one — recreate.
  • Create is async. create() polls GET /vms/:id until started.
  • Extras on create: mode (burstable|dedicated), fractional cpu, ports, dockerDataMib.
  • sandbox.createSnapshot(name, kind) — native VM-state capture (disk/full), distinct from Daytona image-alias snapshots.
  • sandbox.accessToken — per-VM toolbox credential returned once on create.

Build

npm run build      # ESM + CJS to dist/
npm run typecheck
npm test

Surface (v1)

Daytona (create/get/list/start/delete + snapshot), Sandbox (fs/git/process, createSnapshot, lifecycle), SnapshotService (create/get/list/delete/activate), toolbox Process/FileSystem/Git, and the full Daytona error hierarchy. PTY/LSP/ComputerUse/Volumes are deferred.