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

renweb-cli

v0.1.0

Published

CLI tool for scaffolding, building, running, and packaging RenWeb desktop apps. Supports Angular, Vite, Deno, and vanilla project templates.

Readme

renweb-cli

The official CLI tool for RenWeb Engine — scaffold, develop, build, and package cross-platform desktop applications from the command line.

Installation

npm install -g renweb-cli

Commands

| Command | Description | |---------|-------------| | rw create [type] | Scaffold a new RenWeb project (app or plugin) | | rw init [dir] | Integrate RenWeb into an existing project | | rw run | Launch the engine for the current project | | rw build | Build the project (copy manifests, fetch engine and plugins, run bundler) | | rw update | Update the engine for the current project | | rw doctor | Check environment and project health | | rw package | Package build output into distributable archives (.deb, .rpm, .zip, .tar.gz) | | rw doc [pages...] | Open RenWeb documentation pages in a browser | | rw fetch [verb] | Download engine assets (executable, plugin binary, JS/TS API files, or example archive) | | rw docker <action> | Manage the renweb-cli Docker image (build, rebuild, kill, delete) |

Project Types (rw create)

Applications: Angular, Vite, Deno, vanilla, and Angular variants.

Other: plugin — scaffold a new C++ plugin, engine — clone the full engine repository.

Features

  • Zero-config project scaffolding for popular frontend frameworks
  • Automatic engine and plugin fetching from GitHub releases
  • Cross-platform packaging: .deb, .rpm, .tar.gz, .zip
  • Architecture and OS filters for targeted packaging
  • Docker support for isolated build environments
  • Inline documentation viewer (rw doc)

Usage Examples

# Create a new vanilla RenWeb app
rw create vanilla

# Create an Angular app and skip prompts
rw create angular --yes

# Build and package for Linux x86_64 as .deb
rw build
rw package -olinux -ax86_64 -edeb

# Fetch the latest engine executable
rw fetch executable

# Fetch the latest example archive (zip on Windows, tar.gz on macOS/Linux)
rw fetch example

# Check environment health
rw doctor

License

Copyright (C) 2025 spur27 — Boost Software License 1.0