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

thane

v0.0.48

Published

Lightweight compiled web component framework

Readme

Thane

A high-performance, compile-time optimized web component framework.

Installation

npm install thane

Quick Start

import { Component, registerComponent, signal } from 'thane';

const MyComponent = registerComponent(
  { selector: 'my-component', type: 'component' },
  class extends Component {
    private _count = signal(0);

    render = () => html`
      <button @click=${() => this._count(this._count() + 1)}>
        Count: ${this._count()}
      </button>
    `;
  }
);

Performance Optimization Notes

TODO: Expand this section for full documentation

repeat() Directive Optimization

The compiler automatically optimizes repeat() directives when certain conditions are met. When optimized, the framework uses template cloning instead of HTML string parsing, resulting in significantly faster rendering.

Optimized Path Requirements

Your repeat template will use the fast path when ALL of these conditions are met:

| Requirement | ✅ Optimized | ❌ Falls back | |-------------|-------------|---------------| | Single root element | <tr>...</tr> | <td>A</td><td>B</td> | | Pure item bindings | ${item.name} | ${this._theme()} | | No nested repeats | Flat list | repeat() inside repeat() | | No conditionals inside | Direct bindings | when() inside items | | No item event handlers | Use container delegation | @click=${...} on item |

What Happens When Not Optimized

When the optimized path cannot be used, the compiler will:

  1. Multi-root template: Emit an error (build continues, but you should fix)
  2. Other patterns: Log at verbose level (visible with --verbose flag)

The framework will still work correctly using the fallback string-based approach.

Best Practices for Performance

// ✅ GOOD - Uses optimized path
${repeat(this._items(), (item) => html`
  <tr data-id="${item.id}">
    <td>${item.name}</td>
  </tr>
`, null, item => item.id)}

// ❌ AVOID - Component signal inside item (use data model instead)
${repeat(this._items(), (item) => html`
  <tr class="${this._selectedClass()}">  <!-- this._selectedClass() prevents optimization -->
    <td>${item.name}</td>
  </tr>
`)}

// ✅ GOOD - Event delegation on container
<tbody @click=${this._handleClick}>
  ${repeat(this._items(), (item) => html`
    <tr data-id="${item.id}" data-action="select">
      <td>${item.name}</td>
    </tr>
  `)}
</tbody>

// ❌ AVOID - Event handler on each item
${repeat(this._items(), (item) => html`
  <tr @click=${() => this.select(item)}>  <!-- prevents optimization -->
    <td>${item.name}</td>
  </tr>
`)}

trackBy Function

The trackBy function (4th argument to repeat()) should return a unique string or number for each item:

// ✅ Correct - returns unique ID
repeat(items, template, null, item => item.id)

// ✅ Correct - can use index as fallback
repeat(items, template, null, (item, index) => index)

// ❌ Incorrect - returns object (will warn at compile time)
repeat(items, template, null, item => item)

CLI

# Development build with watch
thane dev --entry ./main.ts --out ./dist

# Production build
thane build --prod --entry ./main.ts --out ./dist

# Serve production build
thane serve --prod --entry ./main.ts --out ./dist

License

MIT