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

qyavix

v2.0.1

Published

Qyavix - The minimalist JavaScript rendering library with ultra-fast initial performance in under 10 lines of code.

Readme

Qyavix

🌱 Qyavix — A very small and simple front-end framework.
Implemented in ~10 lines of JavaScript, it provides state management and automatic rendering similar to React or Svelte.

Designed for developers who enjoy minimalism, want rapid prototyping, or are learning front-end framework principles.


Installation

npm install qyavix

🚀 Features

  • 📦 Ultra-lightweight: Core logic under 10 lines
  • Instant rendering: UI updates automatically on state change
  • 🧩 Minimal API:
    • u(initialState) → useState-like hook
    • r(Component, Root) → render a component to the DOM
  • 🔥 Zero dependencies: Works directly in the browser
  • 🌍 Extensible: Can add routing, hooks, or multi-component support
  • 🎯 Unique identity: All rendered DOM elements include dataset.framework='Qyavix'
  • 💡 Educational: Learn how front-end frameworks work under the hood
  • 🧪 Experimental playground: Ideal for experimenting with framework ideas

🎨 Quick Start

<div id="root"></div>
<script type="module">
  import { u, r } from './Qyavix.js';

  function App() {
    const [count, setCount] = u(0);
    const btn = document.createElement('button');
    btn.textContent = 'Count: ' + count;
    btn.onclick = () => setCount(c => c + 1);
    return btn;
  }

  r(App, document.getElementById('root'));
</script>

⚡️ Benchmark

Rendering 100,000 elements with Qyavix 🚀

Test results may vary depending on the device

JS + DOM Fastest Time: 27.000 ms (Only the best results)

Speed Test

Note: This version introduces several new capabilities — including multiple state slots, full component re-execution, and a hook-based rendering cycle. These additions may slightly reduce raw rendering speed compared to earlier builds. If you prefer the previous performance profile, you can use the legacy version at: /Version/Qyavix_v1.1.js

Run a live DOM rendering performance test powered by Qyavix:

Benchmark
Try it now: 👉 https://qyavix-dom.pages.dev

A lightweight micro-framework benchmark — instant DOM stress test (10k / 100k elements).


🌟 Optional improvements

•	You can rename the global object s to any character you like; s is just a minimal placeholder for Qyavix in the code.
•	All rendered DOM elements still include dataset.framework='Qyavix' for identification.
•	This setup supports multiple state keys and multiple components rendered into different DOM nodes.

📝 Roadmap / Future Plans

•	Support for multiple states
•	Component composition
•	Simple routing system
•	Event system and lifecycle hooks
•	More example projects

❓ FAQ

Q: Can I use Qyavix in production? A: Yes, for small projects or prototypes. For large-scale apps, consider full frameworks.

Q: Does it support multiple components? A: Yes, using different state keys and r() can render multiple components independently.

Q: Do I need build tools? A: No. Qyavix works directly in the browser as an ES module.


⚠️ Disclaimer

Qyavix is an independent project and NOT affiliated with any other framework or brand.