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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-vincent-app

v0.0.3

Published

AI-powered app generator with beautiful CLI

Readme

[!CAUTION] > 🚧 This project is not implemented and is not working yet! 🚧

This is a work in progress and the functionality described below is not yet available.

create-vincent-app

AI-powered app generator with a beautiful CLI experience

Features

AI-Powered Generation - Describe your app idea and let AI build it for you
🎨 Beautiful CLI - Interactive prompts with a delightful user experience
Fast & Easy - Get a full project structure in seconds
🚀 Ready to Run - Generated apps are ready to install and run immediately

Usage

Quick Start

Generate a new app with the interactive CLI:

npx create-vincent-app

This will:

  1. Ask for your project name
  2. Ask what you want to build
  3. Generate all the files using AI
  4. Give you next steps to run your app

CLI Commands

Generate App (Default)

npx create-vincent-app

Starts the interactive app generation process.

Help

npx create-vincent-app help
# or
npx create-vincent-app --help
npx create-vincent-app -h

Shows the help message with all available commands.

Version

npx create-vincent-app version
# or
npx create-vincent-app --version
npx create-vincent-app -v

Displays the current version of the CLI.

Info

npx create-vincent-app info

Shows detailed information about the CLI tool, including features, author, and links.

Example

$ npx create-vincent-app

┌  create-vincent-app
│
◇  What would you like to name your project?
│  my-todo-app
│
◇  What do you want to build?
│  A todo app with authentication and dark mode support
│
◇  Generating your app with AI...
│  Writing files... (12 files)
│
└  App generated successfully! 🎉

  Next steps:
  cd my-todo-app
  npm install
  npm run dev

  Problems? https://terminalhq.com/help

Requirements

  • Node.js 16.x or higher
  • npm or yarn

Development

This is a monorepo containing two packages:

  • packages/create-vincent-app - Main CLI package
  • packages/create-my-vincent-app - Alias package that forwards to the main one

Install Dependencies

npm install

Build

npm run build

Publish Both Packages

To bump version and publish both packages:

# 1. Bump version in create-vincent-app
cd packages/create-vincent-app
npm version patch  # or minor, major

# 2. Publish both (from root)
cd ../..
npm run publish:all

The publish:all script will:

  1. Build the main package
  2. Sync the version to the alias package
  3. Publish both packages to npm

API Integration

The CLI calls the Vincent API at https://api.terminalhq.com/generate with your app idea. The API streams back files which are written to your project directory.

To integrate with your own API:

  1. Update the API endpoint in src/generator.ts
  2. Modify the request/response format as needed
  3. Rebuild with npm run build

License

MIT

Links

  • Homepage: https://terminalhq.com