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 🙏

© 2026 – Pkg Stats / Ryan Hefner

shopify-polyfills-beta

v0.0.4-beta.3

Published

Blessed polyfills for web platform features.

Downloads

63

Readme

@shopify/polyfills

Build Status License: MIT npm version npm bundle size (minified + gzip)

Blessed polyfills for web platform features. Exports browser and node polyfills where appropriate.

The following polyfills are currently exported:

  • baseline - The minimum required polyfills for a Shopify app to work in a legacy browser. This includes:
    • @babel/polyfill
    • unhandled-rejection
    • fetch
  • baseline.node - The minimum required polyfills for a Shopify app to work in node. This includes:
    • @babel/polyfill
    • fetch
  • fetch (fetch.node): Polyfills whatwg-fetch in the browser and isomorphic-fetch in node
  • url (url.node): Polyfills URLSearchParams
  • intl: Browser only, polyfills Intl.PluralRules

Installation

$ yarn add @shopify/polyfills

Usage

No index file is exported. You must specify the polyfills that you actually need in your project.

In a project:

import '@shopify/polyfills/baseline';
import '@shopify/polyfills/url';

Module Bundler Configuration

This module also provides a way to configure your bundler to remap polyfill imports based on the environment being built for. For example, if you are building for node, you can have your bundler remap @shopify/polyfills/fetch to @shopify/polyfills/fetch.node. This allows you to maintain only one list of polyfills in your app codebase. Sewing-kit will perform this translation for you automatically.

For this example usage, we will use webpack.

import {mappedPolyfillsForEnv} from '@shopify/polyfills/config';

module.exports = {
  resolve: {
    alias: {
      ...mappedPolyfillsForEnv(env.isServer ? 'node' : env.supportedBrowsers),
    },
  },
};

The argument for mappedPolyfillsForEnv can be either 'node' or a string (or array of strings) provided by the browserslist module. These will then be run through caniuse to determine if each polyfill is required for that particular browser or combination of browsers. If it is not, imports for that polyfill will be no-op.

You can use this to build two (or more) browser bundles that contain different amounts of polyfills to serve to different browsers. Note, however, that this would also required server support to serve a different built bundle based on a request's user agent.