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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@justemit/q-cli

v0.0.1

Published

> [English](./README_EN.md)

Downloads

1

Readme

q-cli

English

使用 远程模板项目 生成本地项目

使用方法

进入本项目根目录,执行 npm link,即可全局安装本脚手架。

在命令行输入 q-cli -h 即可查看所有的命令说明。

生成项目

q-cli 支持下载 子目录(或子文件),使用方法:

q-cli init <projectName> [subdir]

当选择的模板项目中包含所输入的子目录(或子文件)时,q-cli 将仅使用 子目录中的文件(或子文件)。如果模板项目中不包含所指定的子目录(或子文件),将使用整个项目模板。

注意指定使用模板中的某个子文件,需要保持 porjectName 格式与该子文件格式 一致,例如:q-cli init app.js server.js

添加模板

命令行键入 q-cli config --all,即可查看所有配置。请参照 q-cli config templates 的结构加入模板。

例如,假设 q-cli 的配置文件中暂无任何模板,同时我想添加 github 上的模板,过程如下:

q-cli config templates [] # config.tempaltes = []
q-cli config templates.0 {} # config.templates[0] = {}
q-cli config templates.0.rootURL justemit # config.templates[0].rootURL = "justemit"
q-cli config templates.0.templates [] # config.templates[0].templates = []
q-cli config templates.0.templates.0 vue-ssr-boilerplate # config.templates[0].templates[0] = "vue-ssr-boilerplate"

执行 q-cli list,命令行输出应为:

  1. justemit/vue-ssr-boilerplate

注意

如果使用私有 gitlab 的模板项目必须设置 clone: true,同时下载地址的形式应为:

git.yourdomain.com:group/projectname

例如:

{
  "rootURL": "your-gitlab-domain.com:your-gitlab-group",
  "templates": ["repo"],
  "options": {
    "clone": true
  }
}