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

@madenowhere/phaze-directives

v0.0.2

Published

Canonical Phaze JSX `use:` directives — autofocus, tooltip, longpress, clickOutside (main entry), plus `/in-view` (IntersectionObserver: `inView` directive + `useInView` hook) and `/scramble` (text-scramble: `useScramble`). Drop-in companions to the @made

Readme

@madenowhere/phaze-directives

Canonical Phaze JSX use: directives — drop-in companions to the Phaze runtime + phaze-compile build pipeline.

Install

pnpm add @madenowhere/phaze-directives

Phaze + phaze-compile must be wired in your build (Vite plugin, Astro integration, etc.) for the JSX use: namespace to be transformed. See phaze docs.

Directives

| Name | Value type | Behavior | |---|---|---| | autofocus | boolean (or signal) | Focuses the element while truthy | | tooltip | string | Shows a positioned tooltip on hover/focus | | longpress | () => void | Fires the callback after a 500ms hold | | clickOutside | () => void | Fires the callback on clicks outside the element |

For viewport-intersection state, use the inView directive (or the useInView hook) from @madenowhere/phaze-directives/in-view — a subpath (not the main entry) so the IntersectionObserver code tree-shakes away when unused. Text-scramble: useScramble from @madenowhere/phaze-directives/scramble.

Usage

import { autofocus, tooltip, longpress, clickOutside } from '@madenowhere/phaze-directives'
import { s } from '@madenowhere/phaze/dsl'

const open = s(true)

<menu use:clickOutside={() => open.set(false)}>
  <input use:autofocus={open} />
  <button
    use:tooltip={"Reset (long-press)"}
    use:longpress={() => app.reset()}
    on:click={app.confirm}
  >
    Done
  </button>
</menu>

The use:NAME={value} JSX namespace is rewritten by phaze-compile to a post-creation IIFE that calls NAME(el, () => value) against the freshly mounted element — see docs/decisions/dsl_directive.md for the full contract.

Custom directives

Directives are plain functions. Write your own with the same shape:

import { listen, cleanup } from '@madenowhere/phaze'

export const focusRing = (el: HTMLElement, value: () => string) => {
  const apply = () => el.style.outline = `2px solid ${value()}`
  apply()
  listen(el, 'focus', apply)
  listen(el, 'blur',  () => el.style.outline = '')
}

Place in src/directives/focus-ring.ts, import locally, use as use:focusRing={"#03e6ff"}. No registration step.

Tooltip styling

The tooltip directive injects a tiny <style> tag once per page with sensible defaults (.phaze-tooltip { … }). Override globally in your own stylesheet — the directive doesn't fight you for specificity.

License

MIT