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

@kitten-team/webpack-retry-load-plugin

v1.1.7

Published

auto load retry resource from other domain

Downloads

6

Readme

webpack-retry-load-plugin

如果你的站点使用的 CDN,该插件会绑定自动从你配置的其它域名 (例如主域) 重新下载哪些失败的资源。 插件必须配合 html-webpack-plugin 和 mini-css-extract-plugin。

支持同步 JS/CSS 自动重试,也支持异步 JS/CSS 自动重试(通过 webpack import 的 chunk)

并且你可以配置监控,支持上报成功和失败的量。

Usage

install

npm i -D @kitten-team/webpack-retry-load-plugin

webpack config

const RetryPlugin = require('webpack-retry-load-plugin');
{
  output:{
    publicPath:"//cdn.com/pc/", // cdn地址
  },
  plugins: [
    new RetryPlugin({
      // 重试加载地址,必须以'/'结尾
      retryPublicPath: '//example.com/pc/', 

      // 可选,不通过该插件【同步】处理的文件(依然会被加上onerror标签)
      exclude: 'tingyun-rum',

      // 可选,json格式纯文件名对应备份文件全名, 需将js和css分开
      // 在重试时会查询该字典,将js及css的src由 "[publicPath]a.[hash].js" 替换为 "[retryPublicPath]a.[hash_bk].js"
      // 若不引入hash则可不传
      // 字典中不存在的文件名将被保持原状
      bkFileNames: JSON.stringify({
        js: { 'a': 'a.[hash_bk].js', ... },
        css: { 'b': 'b__[hash_bk].css', ...},
      })
    }),
  ]
}