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

@jadis/core

v0.10.0

Published

Jadis is a minimal JavaScript library for building web interfaces using native Web Components.

Downloads

320

Readme

Jadis

Jadis is a minimal JavaScript toolkit for building web interfaces using native Web Components: no virtual DOM, no reactivity system, no compile step. Just clean, readable, native code.

The web, like it used to be.

Documentation

You can find the full documentation on github pages.

Why Jadis?

Modern frontend frameworks are powerful, but they come at a cost:

  • Complex tooling and configuration
  • Steep learning curves
  • Bloated bundles
  • Fragile abstractions

Jadis is dedicated to simplicity and bringing things back to the basics:

  • Native Web Components
  • No framework-specific syntax
  • Zero dependencies
  • Works with just a browser

What You Get

  • A set of tiny helpers to make Web Components simpler and more enjoyable to use
  • Simple templating without JSX or complex DSLs
  • A feeling of control and peace

Installation

npm install @jadis/core

Example

import { Jadis, html, createSelector } from '@jadis/core';

class HelloWorld extends Jadis {
  static selector = createSelector('hello-world');
  
  templateHtml() {
    return html`<p>Hello, <span id="name"></span></p>`;
  }

  onConnect() {
    this.getElement('#name').textContent = 'Jadis developers';
  }
}

HelloWorld.register();

Then in your HTML:

<hello-world></hello-world>

Philosophy

Jadis isn't trying to replace React or Vue. It's here for when you want to:

  • Build small, fast, maintainable UI pieces
  • Avoid a bloated toolchain
  • Use the platform, not fight it

When to Use Jadis

Use it when you:

  • Want simplicity and speed
  • Build micro-frontends, design systems, or widgets
  • Miss the days when you could understand your app in one file

Avoid it if you need:

  • Complex state management
  • SSR or hydration

What Jadis doesn’t do (on purpose)

Jadis is intentionally boring, in the best way.

  • No virtual DOM, but real DOM, updated by you
  • No JSX / TSX, but Plain HTML templates
  • No magic reactivity, but direct control over state and updates
  • No decorators or class gymnastics: it works with both TypeScript and vanilla JS
  • No complex build setup: just a browser and a script tag
  • No over-engineered reactive stores: just event buses when you need global state, and they still work beautifully

You’d be surprised how much you can build without the "modern essentials".

Try It Out

Give it a spin. Build something in 5 minutes. Rediscover the joy of shipping features without wrestling with your framework.

npm install @jadis/core

The web has always been powerful. Jadis reminds you how it used to feel.

Contributing

Feel free to open issues or submit PRs. Simplicity is key!

License

MIT - Made with ❤️, ☕, a bit of 🧠 and Neovim.