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

solidstar

v0.3.0

Published

Datastar with SolidJS reactivity.

Downloads

19

Readme

Solidstar

Datastar with SolidJS reactivity.

Solidstar is an almost drop-in replacement of Datastar with Solid reactivity under the hood, enabling interoperability between hypermedia-driven frontend logic and Solid components.

Quick StartStackblitzComparisonGuideAPI DocsChangelogDiscord

At a Glance

// index.tsx
import { customElement } from "solid-element";
import { signals } from "solidstar";

customElement("my-counter", () => (
  <button onClick={() => signals.count++}>{signals.count}</button>
));

index.html

<script type="module" src="index.tsx"></script>
<div data-signals:count="0" data-text="$count"></div>
<my-counter></my-counter>

[!TIP] Try it out on Stackblitz!

Quick Start

npx giget@latest gh:solidstarjs/solidstar/template#solid my-app
cd my-app
npm install
npm run dev

CDN

[!NOTE]
Use Datastar directly instead, if you do not need Solid components!

<script type="module" src="https://cdn.jsdelivr.net/gh/solidstarjs/[email protected]/bundles/solidstar.js"></script>

Customizing the bundle

To optimize the bundle, import solidstar/core instead of solidstar and import the plugins of your choice:

export * from "solidstar/core";
import "solidstar/plugins/attributes/class";
import "solidstar/plugins/attributes/signals";
import "solidstar/plugins/attributes/text";
import "solidstar/plugins/watchers/patchElements";
import "solidstar/plugins/watchers/patchSignals";

[!TIP] Try it out on https://bundlejs.com!

Setting a custom attribute alias

To use a custom attribute alias, define a global SOLIDSTAR_ALIAS constant in your bundler like so:

import { defineConfig } from "vite";

export default defineConfig({
  define: {
    // Use data-star-* instead of data-* attributes
    "SOLIDSTAR_ALIAS": "'star'"
  },
});

Extending the signals type

You can use Typescript declaration merging, to declare available signals in your app.

declare module "solidstar" {
  interface Signals {
    count: number;
    optionalText?: string;
    foo: {
      bar: number;
    }
  }
}

Comparison with Datastar

| Subject | Datastar | Solidstar | | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | | Size (Gzipped) | 10.23 KiB | 13.8 KiB | | Solid interoperability | ❌ | ✅ | | Extendable signals type | ❌ | Learn how | | Recommended component helpers | ⏸️ Work-in-progress (ion) | Solid, Solid Element | | Recommended install method | No bundler, Local copy, CDN | npm, bundler required for Solid components | | Bundle customization | 💲 Bundler | Learn how | | Advanced debugging tool | 💲 Datastar Inspector Optimized for hypermedia | Solid Developer Tools Optimized for Solid components | | Latest signals technology | ✅ (Alien signals) | ⏸️ Work-in-progress | | Computed's run lazily | ✅ | ❌ | | Supports data-on-signal-patch | ✅ | ❌ (Currently) | | Optimized for MPAs | ✅ | ❌ |

Differences

Accessing undefined signals

Solidstar's signals object is based on Solid's createMutable. Accessing undefined signals behaves slightly different compared to Datastar's implementation:

| Code | Datastar | Solidstar | | -------------------- | ------------ | ------------ | | $null | "" | undefined | | $null.length | 0 | Throws error | | $null.title.length | Throws error | Throws error |

[!TIP] Use the optional chaining operator to prevent errors when accessing optional signals:

$null?.title?.length

Plugin API: beginBatch, endBatch

Solidstar does not support the beginBatch and endBatch plugin API functions, instead you have to use batch:

// Datastar
import { root, beginBatch, endBatch } from "/datastar.js";
beginBatch();
root.count = 1;
root.text = "hello world";
endBatch();

// Solidstar
import { root, batch } from "solidstar";
batch(() => {
  root.count = 1;
  root.text = "hello world";
});

Plugin API: startPeeking, stopPeeking

Solidstar does not support the startPeeking and stopPeeking plugin API functions, instead you have to use peek:

// Datastar
import { root, startPeeking, stopPeeking } from "/datastar.js";
startPeeking();
console.log(root.count);
stopPeeking();

// Solidstar
import { root, peek } from "solidstar";
peek(() => {
  console.log(root.count);
});