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

@jermken/qc-cli

v1.6.19

Published

this is a cli for front-end project

Downloads

63

Readme

qc-cli

this is a cli for front-end project

脚手架安装

npm install @jermken/qc-cli -g

项目创建

qc create

run qc create and then you will complete a series of configurations according to your needs

命令

  • 测试环境构建
qc dev
  • 生产环境构建
qc build

注意

  • 项目下的config.js 文件中 lib 和 packer 字段不可修改
{
    "lib": "vue", // lib字段不可修改
    "packer": "parcel", // packer字段不可修改
    "openPage": "index" // 在开发环境下运行 qc dev 打开的页面
}
  • vue-ts项目中类型为了避免ide报错需要将类型声明文件放在src目录下,且declare module 与 declare global 模块需放在单独的文件中如下:
    -src
        -vue-shims.m.ts // 放置模块声明
        -vue-shims.g.ts // 放置全局声明
  • 自定义配置在config.js文件中,分为 dev和prod 模式,其中配置项根据使用的打包工具而定,使用webpack构建的需要按照webpack的配置格式, 使用parcel构建的需要按照parcel的配置格式

  • 可使用silent模式来去掉构建时的日志打印,eg:

qc dev --silent true

问题

  • 遇到了一个webpack打包懒加载的问题
module parse failed: Unexpected token
you may need an appropriate loader to handle this file type.
|
| var Home = function Home() {
>   return import('../pages/home/home.vue')
|}

通过https://github.com/webpack/webpack/issues/8656找到解决的方案:

npm install acorn --save-dev