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

webp-check

v1.0.2

Published

check webp image support in browser

Downloads

6

Readme

webp-check

checking webp image support in browser

本来想用 webp-support 这个名字,结果 npm 上已经被占用了……只能改用 webp-check 这个名字了

安装

npm install webp-check

由于整个检测过程,是 异步 的,因此,我在第一次检测之后,会尝试将检测结果,保存到 localStorage 里,以便下次读取的时候,能 同步 的获得结果。

如果当前浏览器不支持 localStorage,也支持将检测结果,保存到 cookie 里,可以在 init(config) 方法里,传入一个 config.cookieName 来表示,存储在 cookie 里的名字。

使用方法

注意:由于webp图片的检测,是通过Image来加载不同格式的webp,因此是一个 异步 的过程,如果是第一次执行 init 方法,不能在方法执行后,立即获取结果!

const webpCheck = require('web-check');

//初始化
var config = {
    //如果 `localStorage` 不可用,是否要将检测结果,保存到 `cookieName` 值对应的 `cookie` 里,默认 **不会** 保存到cookie
    cookieName : ''
};
webpCheck.init( config );

//获取是否检测完成. true 检测完成,可以读取检测结果;false 检测还未完成
var isDone = webpCheck.isDone();

//获取检测结果。必须要等上述的 isDone() 返回  true 才能获取!!
var result = webpCheck.webp;

//下面4个属性,都是 boolean 格式的,表示当前浏览器,是否支持该格式的 webp 图片
result.lossy;
result.lossless;
result.alpha;
result.animation;


//也可以主动调用检测方法,该方法,在 **异步** 执行结束后,也会把检测结果保存到 `localStorage`
webpCheck.check()

说明

具体的 webp 各个格式检测代码,是来自 google webp faq官方网站 的。