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-amade

v1.0.0

Published

Scaffold a finished React admin dashboard — users, roles, notifications, auth and settings already built, wired to a documented API

Readme

create-amade

Scaffold a finished React admin dashboard — not a starter kit of parts you assemble into one.

amade — ئامادە — Kurdish for ready.

npm create amade@latest my-app

It asks for a display name, brand colour, languages, and whether to keep the in-memory backend, then writes a tailored project that runs immediately.

What you get

Users, roles and permissions, notifications, account settings with device management, five auth screens, a ⌘K command palette, tables, charts and uploads — all built, all wired to a documented API.

| Screen | What's in it | |---|---| | Dashboard | Stat tiles, revenue series, channel breakdown, range picker | | Items | The reference CRUD list: server paging/sort/search, filters, row selection, bulk delete, CSV export, detail page, activity feed | | Users | Invite and edit, status filter, suspend/reactivate, bulk actions, CSV export, deep-linked by role | | Roles | Permission matrix over a server-sent catalogue, built-in roles locked, member counts linking into Users | | Notifications | Topbar bell with a polled unread badge, preview dropdown, cursor-paged feed | | Settings | Profile, avatar upload, change password with a live strength meter, signed-in devices with revoke | | Auth | Sign in, register, forgot password, reset password, verify email |

Runs with no backend at all: with VITE_API_URL unset the app serves itself from an in-memory mock, so every screen above works on the first npm run dev. The whole mock layer is dropped from a production build rather than shipped as dead code.

Connecting your backend

docs/API.md in the generated project is the full contract — every endpoint, its query params, request and response shapes, and the conventions that apply across all of them (auth, error shape, pagination, bulk actions). Implement it, set VITE_API_URL in .env.local, and nothing else changes.

POST /auth/login     { email, password } → { accessToken, user }
GET  /auth/me                            → User
GET  /<resource>     ?page&pageSize&sort&dir&search → { data, total }

Stack

Vite 8 · React 19 · TypeScript 7 · Tailwind v4 (CSS-first theme, no config file) · React Router 8 · TanStack Query 5 · TanStack Table 9 · Recharts 3 · react-hook-form + zod · Playwright.

English, Arabic and Kurdish with full RTL, built on CSS logical properties rather than direction branching — so the whole layout mirrors, including tables, pagers and menus.

Conventions

The generated project carries a CLAUDE.md holding the rule set that keeps every screen consistent: colours only from index.css, logical properties only, one table component, one chart layer, no inline strings. Read it before adding code — it is what stops the pattern drifting as the app grows.

License

MIT