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

@voya-kit/vite-config

v0.0.13

Published

Voya vite config

Downloads

3

Readme

voya vite config

vite 版本

{
    "dependencies": {
        "vite": "^4.4.0"
    }
 }

项目介绍

@voya-kit/vite-config 是Vite配套的配置、工具与插件集合,主要为了简化配置流程,提升开发体验。本项目分为三大核心部分:configpluginutil

目录结构与说明

vite Config 配置模块

📁 application

  • 针对整个应用级别的基础配置。

📁 common

  • 提供一组通用配置项。

📁 package

  • 特定于包或模块的配置。

vite Plugin 插件集

📂 appConfig

  • 注入统一应用配置,如环境变量等。

📂 compress

  • 资源压缩插件。

📂 html

  • 自定义 HTML 模版处理插件。

📂 version

  • 资源版本控制插件。

📂 visualizer

  • 依赖关系可视化插件,生成交互式图表,帮助分析和优化项目依赖。

快速上手

  • 安装: 通过 npm 将本项目加入到你的依赖中。

    npm install @voya-kit/vite-config --save-dev
  • 配置引入: 在你的 vite.config.js 中引入相应的配置和插件,根据项目需求自由组合。

    import { defineApplicationConfig } from '@voya-kit/vite-config';
      
    export default defineApplicationConfig({
      overrides: {
        ...
      },
    });