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

v0.2.19

Published

A portfolio generator for developers — scaffold production-ready portfolios in seconds

Downloads

2,895

Readme

Overview

create-foliofy is a CLI tool that generates polished, production-ready developer portfolio sites from a single command. Choose between two curated themes, customize your data in one file, and deploy immediately — no build configuration required.

Features

  • Rapid scaffolding — generate a complete portfolio in under two seconds
  • Two curated themes — Dark and White visual styles
  • Responsive design — optimized for all screen sizes
  • Fluid animations — powered by Framer Motion
  • Single-file configuration — edit one data file to update the entire portfolio
  • Zero configuration — no build tooling or boilerplate setup needed

Quick Start

1. Install globally

npm install -g create-foliofy

2. Scaffold your portfolio

npx create-foliofy@latest

The CLI prompts you through the following options:

| Prompt | Default | |--------|---------| | Project name | my-portfolio | | Theme (white / dark) | white | | TypeScript | Yes | | Git initialization | Yes | | Dependency installation | Yes |

3. Launch

cd my-portfolio
npm run dev

Open http://localhost:3000.

Edit app/data/portfolio.ts to customize your portfolio.


Alternative: One-liner

npx create-foliofy@latest my-portfolio && cd my-portfolio && npm run dev

Non-interactive mode

Skip prompts entirely with flags:

npx create-foliofy@latest my-portfolio --theme dark --yes
npx create-foliofy@latest my-portfolio --theme dark --no-install --git

| Flag | Alias | Description | |------|-------|-------------| | --theme | -t | Theme selection (white or dark) | | --yes | -y | Skip all prompts, use defaults | | --no-install | | Skip dependency installation | | --no-git | | Skip git initialization | | --no-ts | | Skip TypeScript | | --dry-run | | Preview without writing files |

Themes

| Theme | Command | |--------|---------| | Dark | npx create-foliofy@latest my-portfolio --theme dark | | White | npx create-foliofy@latest my-portfolio --theme white |

Portfolio Preview

White Theme Portfolio Preview

White theme portfolio featuring hero, projects, and skills sections.

Usage

Interactive Mode

npx create-foliofy@latest my-portfolio

Follow the prompts to select your preferred theme.

Non-Interactive Mode

npx create-foliofy@latest my-portfolio --theme dark --yes

Options

| Flag | Alias | Description | |----------|-------|------------------------------| | --theme| -t | Theme selection (dark/white) | | --yes | -y | Skip prompts, use defaults |

Technology Stack

| Technology | Purpose | |---------------|-------------------| | Next.js | React framework | | TypeScript | Type safety | | Framer Motion | Animations | | Tailwind CSS | Styling |

Project Structure

my-portfolio/
  app/
    components/     Reusable UI components
    data/           Portfolio data (edit this file)
    globals.css     Global styles
    layout.tsx      Root layout
    page.tsx        Main page
  public/           Static assets
  package.json
  next.config.ts

Customization

Edit app/data/portfolio.ts to update:

  • Name, biography, and contact information
  • Project showcase
  • Skills and technologies
  • Experience timeline
  • Social links

License

MIT © Shravan Ramakunja