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-avif-browsers-support-detection

v1.2.3

Published

This package will check browser support for webp and avif image type and will add class avif, webp or no-avif, no-webp accordingly to html element.

Downloads

21

Readme

webp-avif-browsers-support-detection

This is a utility to check if the browser does support for webp and avif next generation image types. It will add classes to the (ex. <html class="webp no-avif">) tag. If the browser does support for that particular image type then it will add that image type as class name (ex.webp) or if doesn't support then it will add "no-" prefix to that image type as class (ex.no-webp). Additionally, you can get browser support details within your js file.

Next generation image types are very good in compression. So, you should start using these.

Usage

$ npm i webp-avif-browsers-support-detection --save

After installation you need to import this module to your js file.

import detect from 'webp-avif-browsers-support-detection';

detect().then(function (resp) {
// will print the detils (ex. {avif:true, webp:false})
  console.log(resp);
});

Using these class names you can load background images conditionally. We will try to load .avif image first as this is the most advanced image type available so far (Highest compression). Webp will come next and if there is no support for those then we will load jpeg or png image.

.avif.webp .anyClassName, .avif.no-webp .anyClassName{
    background:url(imageName.avif);
}
.no-avif.webp .anyClassName{
    background:url(imageName.webp)
}
.no-avif.no-webp .anyClassName{
    background:url(imageName.jpg/.png)
}

Though the name of this project is quite hard coupled to webp and avif, you can extend the capability to check browser support for any new nextgen (or existing) image type you may come across like the code sample given below. You need to pass one object having key type and url, type is the image type and url is the base64 converted image. For the example, if you want to check the support for jpg image you need to pass {type:"jpg",url:"Must be base64 coded small image for jpeg image"}

import detect from 'webp-avif-browsers-support-detection';

detect({type:"jpeg", url:"image/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+ip1sAAAAASUVORK5CYII="});