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

@steav/steav

v1.4.2

Published

A lightweight reactive UI template library powered by JavaScript Proxies.

Readme


Why steav.js?

| Feature | steav.js | React | Vue | |---|---|---|---| | Bundle Size | < 1 KB | ~130 KB | ~60 KB | | Build Step Required | No | Yes | Yes | | Reactive Data Binding | ✅ | ✅ | ✅ | | Virtual DOM | No | Yes | Yes | | Learning Curve | 5 minutes | Weeks | Days |


Get Started in 30 Seconds

Option 1 — Create a new app (recommended)

npx @steav/steav@latest my-app
cd my-app

Open index.html in your browser. Done. ✅

Option 2 — CDN (zero install)

<script src="https://cdn.jsdelivr.net/gh/Ghostty-HQ/steav.js/steav.js"></script>

Option 3 — NPM

npm install @steav/steav

Usage

<!DOCTYPE html>
<html>
<body>
  <div id="app">
    <h1>Hello, {{ name }}! 👋</h1>
    <p>You clicked {{ count }} times.</p>
    <button onclick="app.data.count++">Click me</button>
  </div>

  <script src="https://cdn.jsdelivr.net/gh/Ghostty-HQ/steav.js/steav.js"></script>
  <script>
    const app = new Steav({
      el: '#app',
      data: {
        name: 'World',
        count: 0
      }
    });
  </script>
</body>
</html>

When you click the button, the UI updates instantly with zero configuration.


How It Works

steav.js uses the native JavaScript Proxy API to intercept data changes. When you update app.data.count, the Proxy detects the change and automatically re-renders only the affected parts of the DOM.

app.data.count = 1
    │
    ▼
Proxy intercepts the change
    │
    ▼
steav finds {{ count }} in your HTML
    │
    ▼
UI updates instantly ⚡

API

new Steav(options)

| Option | Type | Description | |---|---|---| | el | string | CSS selector of the root element (e.g. '#app') | | data | object | The reactive data object |

app.data

Access and mutate your reactive data directly. Any change triggers an automatic UI re-render.

app.data.name = 'steav'; // UI updates instantly
app.data.count++;         // UI updates instantly

Contributing

Pull requests are welcome! See CONTRIBUTING.md or open an issue on GitHub.