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

@theseniordev/skills

v1.3.0

Published

Senior-level Claude Code skills by theSeniorDev

Readme

senior-dev-skills

Claude Code skills to help you think like a Senior Engineer.

By TheSeniorDev · MIT-licensed · Contributions welcome


What's inside

| Skill | What it does | Invoke | |---|---|---| | react-senior-review | Review React features like a Senior Engineer. | /react-senior-review <path> | | react-interview | Senior level React interview practice to nail your next interview. | /react-interview [topic] |

Both skills share one core knowledge file: react-senior-review/principles.md. Edit it once — both skills update.

Install

git clone https://github.com/the-senior-dev/senior-dev-skills.git ~/code/senior-dev-skills
mkdir -p ~/.claude/skills
ln -sfn ~/code/senior-dev-skills/skills/react-senior-review ~/.claude/skills/react-senior-review
ln -sfn ~/code/senior-dev-skills/skills/react-interview     ~/.claude/skills/react-interview

Now in Claude Code:

/react-senior-review src/features/checkout   # review a feature
/react-interview state                       # quiz yourself on state & data flow

Because the skills are symlinked into ~/.claude/skills, a git pull in the cloned repo updates both skills automatically — the changes are picked up next time you start Claude Code. No copying required.

Need Claude Code? Get it at claude.com/code.

Why these skills

These skills are like having a Senior Engineer by your side, pointing out things that you might have missed.

To do that, they leverage Software Fundamentals, Design Patterns and Senior Mental Models and the power of Claude Code. Keep in mind they are:

  • Highly opinionated. Biased toward what holds up in production — the wisdom a senior reviewer brings, not a neutral checklist.
  • Anti-useEffect. Reach for derived state first, then event handlers, then render-time computation. Effects are the last resort.
  • Server state ≠ client state. Server data lives in a query layer (TanStack Query, SWR, route loaders, RSC) — never in useState+useEffect, never in Zustand.
  • Push state down. State lives as close to its consumer as possible.
  • Colocate, then share. Code used by one feature stays in that feature; promote it to shared/ only when a second feature actually needs it.
  • Name the pattern. Custom hook? Compound components? HOC? Render prop? State machine? Optimistic update? If a known pattern fits the fix, it gets named.

Roadmap

Each skill ships an authoritative principles.md and a thin SKILL.md that runs the workflow. Planned additions in the same monorepo:

  • node-senior-review / node-interview
  • typescript-senior-review
  • system-design-interview

You can open an issue with the area you want next.

Contributing

The principles in react-senior-review/principles.md are the core of both skills. Pull requests are welcome — especially:

  • Sharper rule statements (less verbose).
  • New patterns (with a clear "when it makes sense / when not").
  • Better calibration for interview questions.

If you're adding a new skill, mirror the layout: SKILL.md is the workflow, principles.md (or a sibling) is the knowledge.

License

MIT — use freely, fork freely, ship freely.