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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@virakkhun/zeno.js

v1.0.2

Published

⚡ A tiny experimental declarative reactivity & islands library for the web.

Readme

Zeno 🌀

A tiny declarative reactivity & islands library for the web

Zeno is a minimal reactive micro-framework inspired by Alpine.js and Solid.js, built for SSR + islands architecture.

  • Declarative attributes (x-data, x-text, x-show, x-on, etc.)
  • Signals (Zeno.createSignal) for fine-grained reactivity
  • Islands (x-island) for server-rendered hydration and reusable components
  • Zero build step – works with plain <script type="module">

⚠️ Experimental, but ready to rock. Zeno is lightweight, hackable, and fun to use — but it’s still evolving. Expect changes, but also expect to be productive right now.

Getting Started

You can use Zeno via CDN or as a local module.

  1. via CDN
<script type="module">
  import "https://unpkg.com/@virakkhun/zeno.js";

  const count = Zeno.ceateSignal(0);
  console.log(count()); // 0
  count.update((v) => v + 1);
  console.log(count()); // 1
</script>
  1. via Local
<script type="module">
  import "./js/zeno.js";

  const count = Zeno.createSignal(5);
  console.log(count()); // 5
</script>

That’s it — no build system, no config. Just drop in a script and start writing declarative components.

Example

<div x-data="{ count: 0 }">
  <h1 x-text="count"></h1>
  <button x-on:click="count+=1">+</button>
  <button x-on:click="count-=1">-</button>
</div>

<br />

<div x-data="{ open: false }">
  <button x-on:click="open = !open">toggle</button>
  <div x-show="open">
    <p>Hello bro 👋</p>
  </div>
</div>

<br />

<div x-island="person" x-props="{ name: Zeno.createSignal('dara') }">
  <div>
    <span>Name: </span>
    <span x-text="name()"></span>
  </div>
  <div>
    <label for="name"> Input name </label>
    <input x-ctrl="on:input:onInputChanged(ctrl.value)" id="name" />
  </div>
</div>

<script type="module">
  import "./js/zeno.js";

  Zeno.define("person", (props) => {
    return {
      name: props.name,
      onInputChanged(value) {
        this.name.update(value);
      },
    };
  });

  Zeno.initIsland();
</script>

Features

  • 🎯 Signals – fine-grained reactivity without a VDOM
  • 🏝️ Islands-first – hydrate only what you need, not the whole page
  • 🧩 Declarative syntax – x-data, x-text, x-on, x-show, etc.
  • ⚡ SSR friendly – works with react-dom/server, deno, or static HTML
  • 🚫 No build required – just import a single JS module

Why Zeno?

There are already awesome libraries out there like Alpine.js, Preact, Vue, and Solid.js. So why another one?

  • 🪶 Smaller & simpler – Zeno is tiny enough to read in one sitting
  • 🎨 Fewer abstractions – it’s just plain JS + attributes
  • 🌐 SSR islands built-in – hydration is first-class, no extra plugins
  • 🤝 Friendly with others – Zeno doesn’t try to replace your stack, it plays nicely with it
  • 🔬 Experimental but fun – a space to explore new patterns without bloat

About

With the assist from Chat-GPT, Zeno now exists - lightweight, experimental, and ready to hack. 🤟