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

torollo

v1.2.0

Published

Interactive visual system design learning lab and container supervisor.

Readme

cover-torollo

TOROLLO — Backend Systems Lab

torollo version license node-current

A local-first visual simulator and educational playground for backend engineering and system design, inspired by Packet Tracer.

TOROLLO is an interactive, visual sandbox designed to help students and developers learn backend architecture, Docker, networking, databases, and system design by actually building and running systems on their local machines.

Technology Stack

  • Frontend: React, TypeScript, Vite, React Flow, xterm.js
  • Backend: Node.js, Express, TypeScript, Socket.io
  • Orchestration: Docker, Dockerode (Interacts directly with your local Docker Daemon)

Quick Start

Run the lab instantly from your terminal without needing to clone the repo or install anything permanently:

npx torollo start

(Note: Ensure Docker Desktop is running before starting, as Torollo orchestrates real local containers)


Supported Infrastructure Nodes

You can drag and drop a wide range of infrastructure components onto the canvas. Everything is backed by real Docker containers running locally on your machine.

  • Computing
    • Ubuntu Server: A basic Linux container. Includes a fully functional, native web-terminal integrated directly into your browser via WebSockets.
    • Auto Scaling Group (ASG): Define a template and scale replicas up or down instantly.
  • Databases / Caches
    • PostgreSQL: Relational database node. Features a built-in interactive Explorer to view schemas, tables, and execute SQL queries directly from the UI.
    • MongoDB (NoSQL): Document database node. Features an interactive Explorer to view collections and run JSON queries without needing external GUI clients.
    • Redis (Cache Store): In-memory data store. Includes a built-in Explorer to view keys and run native Redis CLI commands interactively.
  • Networking & Security
    • VPC & Subnets: Isolated network boundaries backed by custom Docker bridge networks.
    • Security Groups: Drag-and-drop visual firewall rules (Inbound/Outbound). Rules are converted and enforced using actual iptables injected securely into the containers.
    • Load Balancer (Nginx): Automatically generates upstream nginx.conf configurations based on the nodes you wire to it.
    • NAT Gateway: Provides outbound internet access for private subnets using true Linux ip_forward=1 and MASQUERADE routing.

Coming Very Soon

  • Terraform Generation: Automatic Infrastructure-as-Code (IaC) generation for your visual architectures, supporting every major cloud provider (AWS, Azure, GCP).
  • Message Brokers: RabbitMQ, Kafka
  • Application Services: API Service, Microservices Host, Serverless Functions
  • Observability: Live Metrics, Logs, & Monitoring Components

Core Features & Architecture

Interactive Learning by Doing

Instead of reading passive, theory-heavy documentation, you learn by doing:

  • Create Systems: Drag and drop real components to build architectures.
  • Run & Connect: Wire services together and see how they interact.
  • Simulate Traffic: Use the built-in Network Simulator to send pings and watch mock traffic flow through the system.
  • Web Terminals: Instantly open a root shell into any Ubuntu or Database container straight from the browser.

Architecture Overview

  • Backend: Node.js, Express, TypeScript, and Dockerode. The backend acts as the supervisor—it manipulates the local Docker daemon, compiles your visual network topology into real iptables rules, and manages persistent state in ~/.torollo/projects.json. Because those rules are applied inside the containers, every node image must ship with iptables and iproute2 installed — see Required tooling inside every node image.
  • Frontend: React, TypeScript, Vite, and React Flow. Renders the interactive visual grid, node inspector modals, database explorers, and xterm.js terminals.

Core Philosophy

Everything runs locally on your machine.

  • No Cloud integrations (No AWS credentials needed).
  • No remote infrastructure is created, billed, or managed.
  • All nodes in the workspace correspond exactly to live Docker containers on your local system.

Note: This project is strictly educational. It is not an AWS clone or a production infrastructure management tool—it is a sandboxed simulator designed to make system design tangible, visual, and fun.