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

start-it-cli

v1.0.2

Published

A prompt-based CLI tool to scaffold projects for Go, Flutter, React Native, Spring Boot, and more

Readme

start-it

A prompt-based CLI tool to scaffold projects for various frameworks and languages.

Features

  • Interactive prompt-based project setup
  • AI-Powered project generation with intelligent code generation
  • Traditional template-based scaffolding
  • Support for multiple frameworks:
    • Go
    • Flutter
    • React Native
    • Spring Boot
    • Node.js
    • Python
  • Beautiful CLI interface with colors and spinners
  • Fast project scaffolding
  • Context-aware code generation based on project description
  • Feature-based file creation (authentication, database, API, etc.)

Installation

npm install -g start-it-cli

Or use with npx:

npx start-it-cli

Usage

Simply run the command:

start-it-cli

Then follow the interactive prompts to:

  1. Choose generation method: Traditional (Template-based) or AI-Powered (Smart recommendations)
  2. For Traditional: Select your project type (Go, Flutter, React Native, Spring Boot, etc.)
  3. For AI-Powered: Describe your project in natural language
  4. Enter your project name
  5. Choose additional options based on your framework or AI recommendations
  6. Watch as your project is scaffolded automatically

AI-Powered Generation

The AI feature analyzes your project description and generates:

  • Smart framework recommendations based on your requirements
  • Contextual code tailored to your specific use case
  • Feature-based architecture (authentication, database, API routes, etc.)
  • Production-ready file structure with actual working code
  • Domain-specific models (e.g., Patient/Doctor models for hospital systems)

Example AI workflow:

$ start-it-cli
? Choose project generation method: AI-Powered (Smart recommendations)
? Project name: hospital-management
? Describe your project: A comprehensive hospital management system with patient records
? Project scale: large
? Select features you need: authentication, database, api, frontend, backend, testing

AI Recommendations:
Framework: Node.js
Template: TypeScript Project
Reasoning: Based on your requirements, I recommend Node.js with TypeScript for scalability

Generated Files:
- package.json: Complete with dependencies for auth, database, testing
- src/index.ts: Express server with middleware setup
- src/routes/index.ts: API endpoints for hospital operations
- src/models/index.ts: Patient, Doctor, and User interfaces

Example

$ start-it-cli
? What type of project would you like to create? (Use arrow keys)
❯ Go
  Flutter
  React Native
  Spring Boot
  Node.js
  Python

? Project name: my-awesome-app
? Select Go template: (Use arrow keys)
❯ Basic CLI
  Web API
  Microservice

Project created successfully!

Supported Frameworks

Go

  • Basic CLI application
  • Web API (using Gin)
  • Microservice template

Flutter

  • Mobile app
  • Web app
  • Desktop app

React Native

  • Expo project
  • Bare React Native project

Spring Boot

  • REST API
  • Web application
  • Microservice

Node.js

  • Express API
  • Next.js application
  • TypeScript project

Python

  • Django project
  • Flask application
  • FastAPI service

Development

Setup

npm install
npm run build

Development Mode

npm run dev

Testing

npm test

License

MIT