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

create-design-review

v0.4.1

Published

Drop-in Figma-style design review commenting overlay for Vite + React + Express prototypes.

Readme

create-design-review

A drop-in Figma-style commenting overlay for Vite + React + Express prototypes. Click anywhere on your app to leave a pinned comment. Pins anchor to DOM elements so they survive scroll/resize. Comments are page-scoped and visible to anyone with the URL.

Quick start

In a Vite + React + Express project (e.g. a Replit fullstack JS template):

npx create-design-review

That's it. The CLI will:

  1. Copy client/src/components/design-review/ into your project.
  2. Copy server/designReviewRoutes.ts into your project.
  3. Patch your client/src/App.tsx to render <DesignReview />.
  4. Patch your server/routes.ts to call registerDesignReviewRoutes(app).

Restart your dev server, then look for the Feedback button in the bottom-left corner.

Flags

| Flag | What it does | | ----------- | ------------------------------------------------------------- | | --dry-run | Show what would change without writing anything. | | --force | Overwrite existing design-review/ and designReviewRoutes.ts. | | <path> | Install into a specific project directory (default: cwd). |

npx create-design-review ../my-other-prototype --dry-run

Zero-backend mode

If you don't want a backend at all, skip the server install and use the localStorage adapter — comments persist in the user's own browser:

import { DesignReview, createLocalStorageAdapter } from "@/components/design-review";

<DesignReview storage={createLocalStorageAdapter()} />

Custom storage

Pass any object that satisfies the CommentStorage interface (e.g. backed by your own database):

<DesignReview storage={myCustomStorage} />

On the server, registerDesignReviewRoutes accepts a store option for the same purpose:

registerDesignReviewRoutes(app, { store: myDatabaseStore });

Updating

The CLI ships its own copy of the source files. To pick up changes after the canonical source is updated, run inside this package:

npm run sync-templates

Then bump the version and npm publish.