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

@bootcn-vue/cli

v0.6.2

Published

CLI for adding accessible, customizable Bootstrap + Vue 3 components to your project

Readme

@bootcn-vue/cli

CLI for adding Bootstrap + Vue 3 components to your project.

Installation

# Using npm
npm install -g @bootcn-vue/cli

# Using pnpm
pnpm add -g @bootcn-vue/cli

# Using npx (no installation required)
npx @bootcn-vue/cli

Usage

Initialize bootcn-vue in your project

npx bootcn-vue init

This command will:

  1. Detect your Vue 3 + Vite project
  2. Ask for your src directory location
  3. Create bootcn.config.json configuration file
  4. Update tsconfig.json with path aliases (@/*)
  5. Update vite.config.ts with path aliases
  6. Create src/lib/utils.ts with the cn() utility function
  7. Create src/components/ui/ directory for components
  8. Install required dependencies (bootstrap, reka-ui, cva, clsx, tailwind-merge)

Add components to your project

# Add a single component
npx bootcn-vue add button

# Add multiple components
npx bootcn-vue add button input

# Interactive mode - select from list
npx bootcn-vue add

This command will:

  1. Copy component files from @bootcn-vue/buttons to src/components/ui/Button/
  2. Transform imports from package imports to local imports
  3. Make the component ready to use

Remove components from your project

# Remove a single component
npx bootcn-vue remove button

# Remove multiple components
npx bootcn-vue remove button input

# Interactive mode - select from list
npx bootcn-vue remove

# Remove ALL bootcn-vue setup (components, config, utils)
npx bootcn-vue remove --all

The remove --all command will:

  1. Delete all components in src/components/ui/
  2. Delete src/lib/utils.ts (and lib/ directory if empty)
  3. Delete bootcn.config.json
  4. Show command to uninstall dependencies
  5. Include safety confirmations before removing

Configuration

After running init, a bootcn.config.json file is created:

{
  "$schema": "https://bootcn-vue.dev/schema.json",
  "srcDir": "src",
  "aliases": {
    "components": "@/components",
    "utils": "@/lib"
  }
}

Usage in your Vue app

After adding components:

<script setup lang="ts">
import { Button } from "@/components/ui/Button";
</script>

<template>
  <Button variant="primary" size="lg"> Click me </Button>
</template>

Requirements

  • Vue 3
  • Vite
  • Node.js >= 20.0.0

Available Components

  • button - Button component with variants and sizes

More components coming soon!

License

MIT