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

@qs-coder/vite-config

v1.0.2

Published

Qingshi vitejs config for vue project

Readme

Vite Config for Qingshi

项目描述

为了简化Vite的配置,提取该项目,其中含有define/plugins/server等的配置

使用说明

安装

 pnpm add -D @qs-coder/qs-vite-config 

配置

  1. 创建vite.config.ts,内容如下:
import { defineApplicationConfig } from '@qs-coder/qs-vite-config'

export default defineApplicationConfig({
  overrides: {}, // 覆盖或扩展原有配置
  apiProxy: {}, // 服务API的代理配置
})
  1. 对相关插件的控制变量:

| 变量名 | 默认值 | 说明 | | -------------------------------------- | :----: | ---------------------------------------------------------------- | | VITE_GLOB_USE_MOCK | false | 是否开启在build模式下的mock功能 | | VITE_GLOB_DROP_CONSOLE | true | 是否在生产环境下删除console/debugger日志 | | VITE_ENABLE_HTTP_PROXY | false | 是否开启API代理模式 | | VITE_ENABLE_ANALYZE | false | 是否开启打包文件大小结果分析 | | VITE_ENABLE_COMPRESS | false | 是否开启打包压缩 | | VITE_BUILD_COMPRESS | 'gzip' | 压缩方式类型,'gzip'| 'brotli'|'deflate'|'deflateRaw'|'none' | | VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE | false | 使用压缩时是否删除原始文件 | | VITE_HASH_ROUTE | false | hash路由模式 | | VITE_ENABLE_VERCEL | false | 是否是部署的vercel | | VITE_ENABLE_PWA | false | 是否开启PWA |