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

@tatlacas/brevwick-solid

v1.0.1

Published

Brevwick Solid bindings — provider, FAB, useFeedback hook. Drop-in for any Solid or SolidStart app.

Readme

@tatlacas/brevwick-solid

Solid bindings for Brevwick — a <BrevwickProvider>, a floating <FeedbackButton>, and a useFeedback() hook for the imperative path.

Works in any Solid app: SolidStart, Vite + Solid SPA, Astro + Solid islands.

Install

pnpm add @tatlacas/brevwick-solid @tatlacas/brevwick-sdk solid-js

@tatlacas/brevwick-sdk and solid-js are peer dependencies — your bundler deduplicates them with the rest of your app.

Quick start

import { BrevwickProvider, FeedbackButton } from '@tatlacas/brevwick-solid';

export default function App() {
  return (
    <BrevwickProvider config={{ projectKey: 'pk_live_...' }}>
      <YourApp />
      <FeedbackButton />
    </BrevwickProvider>
  );
}

Imperative submit

import { useFeedback } from '@tatlacas/brevwick-solid';

export default function ReportButton() {
  const { submit, status } = useFeedback();
  return (
    <button onClick={() => submit({ description: 'broken!' })}>
      {status() === 'submitting' ? 'Sending…' : 'Report'}
    </button>
  );
}

status is a Solid Accessor — call it inline in JSX for fine-grained reactive updates.

SSR / SolidStart

The provider mounts the SDK inside onMount, so server rendering emits no Brevwick state and the SDK installs only after client hydration. The <FeedbackButton> is gated on the same boundary, so the FAB never appears in server-rendered markup. Drop both into your root layout — no wrapping <Show> or isServer checks needed at the call site.

Compile-time JSX (Solid solid export condition)

The package ships a "solid" export condition pointing at the unbuilt .tsx source. Bundlers that resolve the solid condition (Vite + vite-plugin-solid, SolidStart) pick up the source and run babel-preset-solid themselves so the reactivity graph stays inline. Bundlers that don't (plain Webpack, Rollup) fall through to the pre-transformed dist/index.js and still get a working binding.

Theming

The widget exposes the same --brw-* CSS custom properties as @tatlacas/brevwick-react. Set them on :root (or any ancestor) to re-theme the FAB and panel without rebuilding.

License

MIT