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

@nezam.ai/web-workbench

v0.1.1

Published

Generic browser workbench shell and application composition package

Readme

Web workbench

This package is the generic JavaScript/Node browser workbench and composition layer.

Component implementations live in the concrete control packages under packages/web/*. This package owns the catalog client, application/form renderer, runtime event client, body/workbench shell, and their composition.

See ARCHITECTURE.md for the current package boundary map.

The workbench is a frontend client of a live UI runtime over HTTP. Application and form metadata are loaded from the backend catalog, while this package owns the browser composition and event flow.

Local dev

Start a compatible UI runtime separately and make it available at http://127.0.0.1:9000/ (or set WEB_RUNTIME_BASE to its URL).

A Nezam application can supervise both processes with:

nzm run web

That command starts the generated backend first, waits for its HTTP readiness, then starts this workbench and reports both URLs.

Then run the web workbench in another terminal:

cd packages/web/workbench
WEB_RUNTIME_BASE=http://127.0.0.1:9000/ npm start

npm run watch and npm run demo are aliases for the same Node development server. The published package contains the JavaScript/Node shell, its browser assets, and the local development server entrypoint. This server is not a production authentication or authorization boundary.

The shell binds to 127.0.0.1 on port 7100 by default. Override PORT if you want a different local port. The server proxies selected UI/runtime requests to WEB_RUNTIME_BASE; keep both services on trusted local or authenticated infrastructure.

To bind to a non-loopback interface, explicitly set both a host and a network token:

HOST=0.0.0.0 UI_WEB_NETWORK_TOKEN='use-a-long-random-token' npm start

Network requests must provide either Authorization: Bearer <token> or X-UI-ERP-Token: <token>. Do not expose this development server directly to the public internet; use a production gateway with authentication, authorization, TLS, origin policy, rate limits, and backend controls.