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

vue-cli-version-static-plugin

v2.2.4

Published

- 为实现vuecli脚手架打包后,项目可以通过手动切换版本号来控制客户端具体展示页面,这在当前端页面出错,服务器上直接修改静态资源版本号来还原/回滚到之前代码。而不需要重新编译! - 为解决vuecli项目中直接引用public中的static资源打包后无法正确展示的问题。

Downloads

36

Readme

VersionPlugin

  • 为实现vuecli脚手架打包后,项目可以通过手动切换版本号来控制客户端具体展示页面,这在当前端页面出错,服务器上直接修改静态资源版本号来还原/回滚到之前代码。而不需要重新编译!
  • 为解决vuecli项目中直接引用public中的static资源打包后无法正确展示的问题。

参数

名称|类型|说明|默认值 ---|---|---|-- publicStaticFolderName|string|public文件夹下静态资源目录文件夹名。若有嵌套则需要将父文件夹名也带上,如:'project/static'|static loadMethod|string|脚本加载方式,async/defer|'' merge|boolean|public文件夹下静态资源是否与assets打包后的文件合并。不合并则单独存放一个文件夹,文件夹结构和名称与public中一致。 |true versionControl|boolean|开启版本控制开启,开启后会自动复制指定路径上的config文件到public中,同时生成sourcMap文件,关闭htmlplugin的inject功能, |true to|string|config 配置文件将要拷贝的路径。在versionControl为true时起作用 |public/config/index.js from|string/Array|config 配置文件的来源路径。在versionControl为true时起作用。可以配置多个来源文件路径|config/${args.config ||process.env.NODE_ENV}.js args为脚本命令中的参数对象 dynamicPublicPath |boolean| 通过配置,动态设置publicPath, 开启后 vue.config文件中不要设置publicPath。 在mian.js中添加 if (window.SITE_CONFIG["publicPath"]__webpack_public_path__ = window.SITE_CONFIG["publicPath"] config 文件中添加 window.SITE_CONFIG["publicPath"]配置 注意:当设置了dynamicPublicPath为true时,不要在css文件中应用publich中的静态资源。js,vue文件中使用必须手动加上window.SITE_CONFIG["publicPath"]|false

使用方式

  • 在vue.config.js中引入VersionPlugin

  • 获取变量VersionPlugin,VersionCode,

  • VersionPlugin 直接在configureWebpack中添加到插件中。 config.plugins.push(new VersionPlugin());

  • VersionCode 赋值给 assetsDir,也可以在前面拼接自定义名称或文件夹名 assetsDir: VersionCode 或 'static/'+VersionCode

  • 最后在public中的index.html模板文件中引入config文件

  • 若htmlplugin中的option设置了cdn,则会对cdn中的所有绝对引用路径与js,css做相同处理。同时对绝对引用路径支持动态指定publicPath

不同环境配置

  • 默认取当前NODE_ENV值 "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build --report" },
  • 指定配置文件名称 ,根目录下的config文件夹中需要存在local.js和test.js文件,若没有会自动建立 "scripts": { "local": "vue-cli-service serve --config local",
    "test": "vue-cli-service serve --config test" },

注意事项

  • terser-webpack-plugin 版本需要4.x以上

  • vuecli 4.x 对应的htmlWebpackPlugin也必须是4.x

config
|-index-development.js
|-index-production.js
|-index-qa.js

// vue.config.js
const { VersionPlugin, VersionCode } = require("./vue-cli-version-static-plugin/index");
const cdn = {
  css: ["/static/plugins/pageoffice-5.2.0.6/pageoffice.css"],
  js: [
    "/static/plugins/pageoffice-5.2.0.6/pageoffice.js",
    "/static/plugins/echarts-4.9.0/echarts.common.min.js",
    "https://gw.alipayobjects.com/os/antv/pkg/_antv.hierarchy-0.4.0/build/hierarchy.js",
    "https://api.map.baidu.com/api?v=2.0&ak=28209425e505ba8c3c4ade607ca46fd7&__ec_v__=20190126"
  ]
};
module.exports = {
publicPath: '/',//dynamicPublicPath为true时不设置任何值
assetsDir: VersionCode,
chainWebpack: (config) => {
  config.plugin("html").tap((args) => {
      args[0].minify = false;
      args[0].cdn = cdn
      return args;
    });
 },
configureWebpack: (config) => {
    config.plugins.push(new VersionPlugin());
}
}
//package.json
// 通过config适配不同配置,默认为当前process.env.NODE_ENV值,对应config 文件夹下的index-{name}文件
 "scripts": {
    "serve": "vue-cli-service serve --open",
    "build": "vue-cli-service build --no-clean --report",
    "qa": "vue-cli-service build --no-clean --report --config qa"
  }
//main.js dynamicPublicPath设置true时
if (window.SITE_CONFIG["publicPath"])
  __webpack_public_path__ = window.SITE_CONFIG["publicPath"]