image-webpack-loader安装慢的解决方案

image-webpack-loader安装慢的解决方案

经过搜索,我选择使用image-webpack-loader对自己的web应用进行优化。然而,安装实在是太慢了,这里记录一下我的解决方案。

我与每一个前端开发者一样,第一时间想到以换源解决这个问题。
我使用yarn,npm换了很多个源,速度依然感人。

偶然一次机会,我在某个项目中完成了imagemin的安装。
查看了依赖关系,发现image-webpack-loader实际上只是对imagemin进行了一个简单的封装,而imagemin又分为于以下几个包:

  • imagemin-gifsicle(gifsicle-bin)
  • imagemin-jpegtran(jpegtran-bin)
  • imagemin-mozjpeg(mozjpeg-bin)
  • imagemin-optipng(optipng-bin)
  • imagemin-pngquant(pngquant-bin)
  • imagemin-svgo(svgo-bin)

似乎,这几个包也只是对native程序的封装而已?
阅读gifsicle-bin的源代码后,我有了更清晰的认知:
这几个包在安装时执行lib/install.js从github下载二进制可执行文件,由于众所周知的原因,这变得异常缓慢…
令我感到疑惑的是,为什么我挂了代理依然很慢?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
node_modules/gifsicle-bin/lib/index.js
*/
const url = `https://raw.githubusercontent.com/imagemin/gifsicle-bin/v${pkg.version}/vendor/`;

module.exports = new BinWrapper()
.src(`${url}macos/gifsicle`, 'darwin')
.src(`${url}linux/x86/gifsicle`, 'linux', 'x86')
.src(`${url}linux/x64/gifsicle`, 'linux', 'x64')
.src(`${url}freebsd/x86/gifsicle`, 'freebsd', 'x86')
.src(`${url}freebsd/x64/gifsicle`, 'freebsd', 'x64')
.src(`${url}win/x86/gifsicle.exe`, 'win32', 'x86')
.src(`${url}win/x64/gifsicle.exe`, 'win32', 'x64')
.dest(path.join(__dirname, '../vendor'))
.use(process.platform === 'win32' ? 'gifsicle.exe' : 'gifsicle');

怎么办呢?经过一天的折腾和尝试,我发现cnpm可以很好的解决这个问题。
当你使用cnpm安装imagemin时,包中的lib/install.js将以淘宝镜像代替raw.githubusercontent.com,这样一来,下载几乎是瞬间完成。

1
const url = `https://npm.taobao.org/mirrors/gifsicle-bin/v${pkg.version}/vendor/`;

真的挺神奇的,cnpm好感度++
注意:

  1. 如果从yarn/npm等工具切换到cnpm,一定要将node_modules删除然后重新执行cnpm install,否则会导致严重的依赖错误问题。
  2. 如果TypeScript报Duplicate identifier错误的话,在tsconfig.exculde中加上"node_modules/*"即可
    1
    2
    3
    4
    5
    6
    //tsconfig.json
    {
    ...
    "exclude": ["node_modules/*"]
    ...
    }

image-webpack-loader安装慢的解决方案

https://zsh2401.top/post/image-webpack-loader/

作者

zsh2401

发布于

2019-11-30

更新于

2023-03-31

许可协议

评论