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

roframe

v1.3.1

Published

Zero-dependency Roblox Toolchain Automation & Dynamic Rojo Project Builder

Readme

RoFrame 🚀

Zero-dependency Roblox Toolchain Automation & Dynamic Rojo Project Builder.

RoFrame streamlines your Roblox development environment setup into a single command. It manages toolchain managers (Rokit), dynamic package dependencies (Wally with centau/[email protected]), linter configurations (Selene), structured modular project templates (Core, Features, Startup), and provides a dynamic Rojo project builder with file watching, feature generator CLI, and auto-generated sourcemap.json.


⚡ Quick Start

Option 1: Global Installation (Recommended for Daily Development)

Install once to make roframe available globally:

npm install -g roframe

Then run commands anywhere in your terminal:

# 1. Initialize a complete new project structure
roframe create

# 2. Quickly generate a new Feature module (e.g. Shop)
roframe feature Shop

# 3. Start live file watcher & Rojo sync server
roframe watch

Option 2: Direct npx Execution (No Installation Required)

# Initialize project
npx roframe create

# Generate a new feature module
npx roframe feature Shop

# Start live sync
npx roframe watch

🛠️ Commands Overview

| Command | Description | | :--- | :--- | | roframe create / npx roframe create | Installs Rokit, configures toolchain manifests (rokit.toml, wally.toml with [email protected], selene.toml), sets up starter folders (Core as Shared, Features, Startup with Init.server.luau and Init.client.luau), generates roframe.project.json, default.project.json, sourcemap.json, .gitignore, empty ServerPackages/, and runs wally install. | | roframe feature <Name> / roframe g <Name> | Instantly generates a structured Feature directory inside src/Features/<Name>/ with starter <Name>Service.luau (Server), <Name>Controller.luau (Client), and UI/Components/ folders. | | roframe reset-structure / npx roframe reset-structure | Regenerates default roframe.project.json template (if corrupted or customized by mistake) and auto-rebuilds default.project.json and sourcemap.json. | | roframe watch / npx roframe watch | Watches src/ & roframe.project.json, auto-compiles default.project.json and sourcemap.json on file changes, and runs rojo serve for live sync with Roblox Studio. | | roframe help / roframe --help | Displays command documentation and usage details in terminal. |


📁 Starter Project Structure

src/
├── Core/                       # Entirely Shared (ReplicatedStorage.[ProjectName].Core)
│   └── UI/Components/
├── Features/                   # Convention-based (Files ending with Service = Server, rest = Client/Shared)
│   └── <FeatureName>/          # Created via `roframe feature <Name>`
│       ├── <Name>Service.luau  # Server-side Service
│       ├── <Name>Controller.luau # Client-side Controller
│       └── UI/Components/
└── Startup/
    ├── Init.server.luau        # Mapped to ServerScriptService.ServerInit
    └── Init.client.luau        # Mapped to StarterPlayer.StarterPlayerScripts.ClientInit

📄 License

MIT License.