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-tech-dev-portfolio

v0.2.4

Published

Clones dev-portfolio-template, interviews you for the basics, and generates a ready-to-run Next.js portfolio.

Readme

create-dev-portfolio

CLI orchestrator for dev-portfolio-template. Clones the template, asks a handful of questions about you, writes the answers into config/profile.json, and verifies the site builds.

Part of a 3-repo MVP:

  • dev-portfolio-template — the Next.js site, config-driven.
  • create-dev-portfolio (this repo) — CLI that clones the template and runs the interview.
  • portfolio-agent — (later) generates richer content from a resume/GitHub profile.

What it does

  1. Clones the template repo (fresh git history, not a fork).
  2. Interviews you for name, title, bio, GitHub username, LinkedIn, email, website, and location.
  3. Merges those answers into the cloned repo's config/profile.json — everything else (experience, skills, education, projects) stays as the template's placeholder content for you to fill in by hand, or for a future portfolio-agent pass to generate from a resume.
  4. Runs npm install and npm run build to verify the site builds.
  5. Makes an initial commit.
  6. Prints a heads-up about which config sections are still placeholder content.
  7. Asks whether to push to GitHub and deploy to Vercel now (opt-in, default no):
    • Pushing needs the gh CLI installed and signed in (gh auth login).
    • Deploying needs the vercel CLI installed and signed in (vercel login).
    • Either one missing/unauthenticated just prints the manual command and moves on — it never blocks getting your local portfolio running.
  8. Starts the dev server (npm run dev) so you land on the running site.

Usage

npm install
npm run build
node dist/index.js my-portfolio

Or once published: npx create-tech-dev-portfolio my-portfolio (the npm package is create-tech-dev-portfoliocreate-dev-portfolio was already taken).

Options:

  • --template <url> — clone a different template repo (default: dev-portfolio-template).

Development

npm install
npm run dev -- my-portfolio   # builds + runs in one step