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

hiworld-vite

v1.3.0

Published

A Vite scaffolding CLI (commander + inquirer)

Readme

hiworld-vite

A powerful, interactive CLI for scaffolding modern Vue 3 & Express.js applications.
Get started with the latest technology stack in seconds.

npm version License: MIT

📦 Installation

You can install the CLI globally:

npm install -g hiworld-vite

Or run it directly using npx (recommended):

npx hiworld-vite create my-app

✨ Features

hiworld-vite provides two robust templates to kickstart your full-stack development.

🟢 Frontend Template (Vite + Vue)

Built for performance and developer experience.

  • Core: Vite 7.x + Vue 3.5+
  • Routing: Optional Vue Router 4.x setup with example views.
  • State Management: Optional Pinia 3.x store configuration.
  • Styling: Optional Tailwind CSS 3.4 integration (auto-injects utility classes).
  • Persistence: Optional Dexie.js (IndexedDB) integration for client-side storage.

🔵 Backend Template (Express.js)

Production-ready REST API boilerplate.

  • Modern JS: Full ES Modules (import/export) support.
  • Database: Optional MySQL (mysql2) with automatic schema migration.
  • Caching: Optional Redis (ioredis) integration.
  • Security: Optional JWT authentication & Bcrypt password hashing.
  • Utilities: Axios, CORS, and Dotenv pre-configured.

🚀 Usage

Run the create command and follow the interactive prompts:

hiworld-vite create <project-name>

Interactive Workflow

  1. Select Project Type:

    • Frontend (Vite + Vue)
    • Backend (Express.js)
  2. Customize Features (based on selection):

    • Frontend: Add Router? Pinia? Tailwind? Dexie?
    • Backend: Add MySQL? Redis? JWT? Axios?
  3. Package Manager:

    • Choose between pnpm, npm, or yarn.
  4. Auto Install:

    • The CLI can automatically install dependencies for you.

📂 Backend Configuration (.env)

If you choose the Express.js template, a .env file is automatically generated with secure defaults for your local development:

PORT=3015

# If MySQL selected
DB_HOST=127.0.0.1
DB_USER=hiworld_vite
DB_PASSWORD=PXEBmxH3KAccDs6P
DB_NAME=hiworld_vite

# If Redis selected
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
REDIS_PASSWORD=secret_redis

# If JWT selected
JWT_SECRET=jwtsecret

License

MIT