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

@fairfox/standalone-web

v1.0.6

Published

A single, standalone version of Preact, HTM and Preact Signals. No external dependencies, just one single file.

Downloads

21

Readme

Standalone Preact + HTM + Signals

A single, standalone version of Preact, HTM and Preact Signals. No external dependencies, just one single file.

Latest versions included:

  • Preact: 10.27.0
  • @preact/signals: 2.2.1
  • HTM: 3.1.1

Available as a single file for CDN usage or local vendoring.

Usage

Via esm.sh CDN (Recommended)

<div id="app"></div>
<script type="module">
  import {
    html,
    render,
    signal,
    Fragment
  } from "https://esm.sh/@fairfox/[email protected]";

  const count = signal(0);

  function App() {
    return html`
      <Fragment>
        <h1>Hello World!</h1>
        <button onClick=${() => (count.value += 1)}>
          Increment with signal
        </button>
        <p>Counter: ${count}</p>
      </Fragment>
    `;
  }

  render(html`<${App} />`, document.getElementById("app"));
</script>

TypeScript Support

When using TypeScript with esm.sh, type definitions are automatically provided:

import { html, render, signal, useSignal } from "https://esm.sh/@fairfox/[email protected]";

const count = signal<number>(0);

function Counter() {
  const localCount = useSignal(0);
  
  return html`
    <div>
      <p>Global: ${count}</p>
      <p>Local: ${localCount}</p>
      <button onClick=${() => localCount.value++}>+</button>
    </div>
  `;
}

React Compatibility Version

For use with React component libraries:

<script type="module">
  import {
    html,
    render,
    signal,
    Fragment,
    memo,
    forwardRef
  } from "https://esm.sh/@fairfox/[email protected]/dist/standalone-web-react-compat.js";

  // Now compatible with React ecosystem libraries
</script>

Via npm (not recommended)

I don't recommend installing this package via NPM. It's best to install Preact, HTM and Preact Signals separately:

npm install preact htm @preact/signals
# or yarn
yarn add preact htm @preact/signals
# or pnpm
pnpm install preact htm @preact/signals

Motivation and goals

You can absolutely use separate packages via CDN (and it works fine):

<script type="module">
  import { h, render } from "https://esm.sh/preact";
  import htm from "https://esm.sh/htm";
  import { signal } from "https://esm.sh/@preact/signals";
  const html = htm.bind(h);
</script>

or use the combined HTM/Preact export:

<script type="module">
  import { html, render } from "https://esm.sh/htm/preact";
  import { signal } from "https://esm.sh/@preact/signals";
</script>

However, there are some situations where having either a single import is more convenient, or where one wants to vendor an already optimised build of these core components (eg for a browser extension).

Simply put, the ideal situation is:

<script type="module">
  // Use via esm.sh CDN with automatic TypeScript support
  import { html, render, signal } from "https://esm.sh/@fairfox/[email protected]";
  
  // OR download locally for offline use
  import { html, render, signal } from "./standalone-web.js";
</script>

All rights belong to Preact, HTM and Preact Signals owners/maintainers.

Building from source

Install and bundle using Bun:

git clone https://github.com/alexjeffcott/standalone-web.git
cd standalone
bun install
bun run bundle        # Creates dist files

Files Generated

  • dist/index.js - main bundle (23.8 KB minified)
  • dist/compat.js - React compatibility version (30.5 KB minified)
  • dist/index.d.ts - TypeScript definitions
  • dist/index.d.ts.map - maps for TypeScript definitions
  • dist/compat.d.ts - TypeScript definitions for compat version
  • dist/compat.d.ts.map - maps for TypeScript definitions for compat version