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

support-webp-webpack-plugin

v0.0.2

Published

use WebP in css background & conversion png/jpe?g to webp

Downloads

2

Readme

support-webp-webpack-plugin

supportWebPWebpackPlugin 简化项目webP方案接入,节省项目图片加载流量,提高web访问性能。

安装

npm install --save-dev support-webp-webpack-plugin

基本用法

该插件包含浏览器webP支持检测脚本插入、浏览器webP支持的css样式转换及图片转换为webP格式图片。 只需添加插件到你的 webpack 配置如下:

var SupportWebPWebpackPlugin = require('support-webp-webpack-plugin');
var path = require('path');

var webpackConfig = {
  entry: 'index.js',
  output: {
    path: path.resolve(__dirname, './output'),
    filename: 'index_bundle.js'
  },
  plugins: [new SupportWebPWebpackPlugin()]
};

这将在生成资源到 output(或其它资源生成目录)目录之后,对*.html*.css以及*.(png|jpe?g)资源进行处理:

1.在html的<head>中以prepend方式顶部插入浏览器webP支持检测脚本;

2.生成.webp的css样式:

.banner {
  background: url('banner.png');
}
.webps .banner {
  background: url('banner.webp');
}

3.生成webP图片资源:

./assets/banner.png

./assets/banner.webp

配置

|字段名|类型|默认值|描述| |:---:|:--:|:--:|:---| |useCheckScript|{Boolean}|true|是否启用浏览器webP支持检测脚本插入| |useConverImg|{Boolean}|true|是否启用图片转换为WebP格式图片| |useConverCss|{Boolean}|true|是否启用css样式转换为支持webP格式图片| |webpQuality|{Number}|75|设置webP图片质量(取值范围0-100)| |imageResize|{Boolean}|false|是否对尺寸宽度大于750px的图片进行宽度为750px的等比例缩放|