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-vue-docs-ui

v1.0.12

Published

Scaffolding tool for Vue Docs UI projects - Create beautiful documentation websites with one command

Downloads

49

Readme

create-vue-docs-ui

🚀 Scaffolding tool for Vue Docs UI projects - Create beautiful documentation websites with one command!

Create stunning, responsive documentation websites in minutes with Vue Docs UI. This CLI tool provides everything you need to get started quickly.

Quick Start

# Create a new documentation project
npm create vue-docs-ui my-docs

# Navigate to your project
cd my-docs

# Install dependencies
npm install

# Start the development server
npm run dev

Your documentation website will be running at http://localhost:5173! 🎉

Features

Zero Configuration - Works out of the box with sensible defaults
📱 Responsive Design - Looks great on all devices
🎨 Customizable Themes - Light and dark themes with full customization
📝 Markdown Support - Write your docs in Markdown with enhanced features
🔍 Built-in Search - Powerful search functionality
Lightning Fast - Built with Vite for incredible performance
🌍 SEO Optimized - Perfect for public documentation sites

What You Get

When you run npm create vue-docs-ui, you get a complete documentation website with:

  • Modern Vue 3 + TypeScript setup
  • Pre-configured routing for seamless navigation
  • Responsive layout that works on all devices
  • Sample documentation to get you started
  • Production-ready build configuration
  • Hot reload for fast development

Project Structure

my-docs/
├── public/
│   ├── config/
│   │   └── site.yaml          # Site configuration
│   └── docs/
│       ├── guide/
│       │   ├── introduction.md
│       │   ├── installation.md
│       │   └── quick-start.md
│       └── examples/
│           └── basic.md
├── src/
│   ├── App.vue                # Main app component
│   └── main.ts                # Application entry point
├── index.html
├── package.json
└── vite.config.js

Customization

Site Configuration

Edit public/config/site.yaml to customize your site:

site:
  title: "My Documentation"
  description: "My awesome documentation website"
  logo: "📚"
  author: "Your Name"

navbar:
  items:
    - title: "Home"
      link: "/"
    - title: "GitHub"
      link: "https://github.com/username/repo"
      external: true

theme:
  defaultMode: "light"
  allowToggle: true
  colors:
    primary: "#3b82f6"
    secondary: "#64748b"

Writing Documentation

Create Markdown files in public/docs/ and they'll automatically be available as pages. Vue Docs UI supports:

  • Enhanced Markdown with syntax highlighting
  • Tables and lists with beautiful styling
  • Code blocks with language-specific highlighting
  • Math equations (LaTeX support)
  • Custom HTML when needed

Commands

# Development
npm run dev          # Start development server

# Production
npm run build        # Build for production
npm run preview      # Preview production build

Requirements

  • Node.js 14.18+ or 16+
  • npm 6+ or yarn 1.22+

Related Projects

  • vue-docs-ui - The underlying documentation framework
  • Vue.js - The progressive JavaScript framework
  • Vite - Next generation frontend tooling

📞 Support & Community

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📖 Documentation in multiple languages:

Quick Contributing

📊 Stats

npm downloads GitHub stars GitHub issues

License

MIT © Vue Docs UI Team


Happy documenting! 📚