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

@rrdawlx/vue-project-cli

v0.9.4

Published

vue project command line tool

Readme

vue-project-cli

vue project command line tool

使用

Usage: vp [options] [command]

Options:
  -v, --version       output the version number
  -h, --help          output usage information

Commands:
  init [directory]    新建项目,如未提供目录名 directory,则以当前目录为根目录新建项目。
  dev                 项目开发
  build               项目构建
  inspect             查看项目配置
  check-version       校验项目中 package.json 的 version 字段是否已升级
  check-npm-pub       执行 npm publish 前的检查工作
  add-version-tag     给项目仓库打上基于当前 commit 中的 package.json 中 version 的 tag
  print-deps-version  输出项目依赖的版本信息
  help [cmd]          display help for [cmd]
Usage: vp-init [options] [directory]

Options:
  --no-install  不执行 npm install 命令
  -h, --help    output usage information
Usage: vp-dev [options]

Options:
  --mode <mode>     项目模式,根据此值选择 webpack 配置,可选项:development、production。 (default: "development")
  --node-env <env>  设置 process.env.NODE_ENV 的值,默认与 mode 为相同值。
  -h, --help        output usage information
Usage: vp-build [options]

Options:
  --mode <mode>     项目模式,根据此值选择 webpack 配置,可选项:development、production。 (default: "production")
  --node-env <env>  设置 process.env.NODE_ENV 的值,默认与 mode 为相同值。
  -h, --help        output usage information
Usage: vp-inspect [options]

Options:
  --mode <mode>     项目模式,根据此值选择 webpack 配置,可选项:development、production。 (default: "production")
  --node-env <env>  设置 process.env.NODE_ENV 的值,默认与 mode 为相同值。
  -h, --help        output usage information

示例

vp-init

vp-dev

vp-build

vp-inspect

vp-check-version

vp-check-npm-pub

vp-add-version-tag

vp-print-deps-version

开发

  1. 在项目根目录执行 npm link 以在全局注册 vp 命令;
  2. 执行 vp -v 测试 vp 命令是否可用。