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

rollup-plugin-sri

v1.3.4

Published

Add subresource integrity tags to all your html files πŸ”’

Downloads

3,932

Readme

rollup-plugin-sri

Because web security should not be difficult.

Codecov Coverage standard-readme compliant npm

This plugin adds subresource integrity attributes to all resources imported by your html files.

Table of Contents

Install

via npm:

npm install --save-dev rollup-plugin-sri

or via yarn:

yarn add -D rollup-plugin-sri

Usage

Just use this plugin together with another plugin that outputs an html file, like @rollup/plugin-html. It will then generate integrity and crossorigin attributes for all script tags and all link rel="stylesheet" tags.

import html from '@rollup/plugin-html' // or any other html-plugin
import sri from 'rollup-plugin-sri'

export default {
  input: 'index.js',
  output: {
    file: 'out.js',
    format: 'es'
  },
  plugins: [html(), sri()]
}

Examples

Simple

You might have a script tag in your html to include a javascript file like this:

<script src="index.js"></script>

Which then gets turned into this:

<script
  src="index.js"
  integrity="sha512-nbecVo2rGsF6Q3d4sK/sF4AmMv3eIxXpjk6Larv6iDUWeaRjjYL44RyK45vPO3Aav/ep6qTgbUAebC20uEGq8g== sha384-zFyvltviTuMi40r9uTjP6Cc/kdJy3hboH2SbOT2Q7UaXK8c4+DtTEAG16VM0H4tP"
  crossorigin="anonymous"
></script>

External resources

Let's say you're using Bootstrap on your page, but it get dynamically injected so you can't set the integrity attribute yourself. The html will then look something like this:

<link
  rel="stylesheet"
  href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
/>

This plugin will turn it into the following:

<link
  rel="stylesheet"
  href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
  integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
  crossorigin="anonymous"
/>

Multiple hashing algorithms

You can also specify any number of hashing algorithms to be used by the plugin as long as they are supported by your current version of nodejs.

import html from '@rollup/plugin-html' // @rollup/plugin-html for example
import sri from 'rollup-plugin-sri'

export default {
  input: 'index.js',
  output: {
    file: 'out.js',
    format: 'es'
  },
  plugins: [
    html(),
    sri({
      algorithms: ['sha1', 'md5', 'sha512']
    })
  ]
}

This config will generate an output like this:

<script
  src="index.js"
  integrity="sha1-uwq/zzhXJzUJKIrPcWeL6RkTC8I= md5-illu96GKKoep5d+RUptcBw== sha512-k2VO1XnXo7MN/pqEHWCJYyn4D2d5z0FSDRvIrz4WPmw4VTPNhnSMJRvAwz2Llaij45VU35+eO3eQjydVhGggLg=="
  crossorigin="anonymous"
></script>

There are a few things to note though:

  1. You can in theory use any hashing algorithm you want, however most browser only support the sha family of hashing algorithms like sha256, sha384 and sha512
  2. Browser vendors are actively discouraged from using md5 and sha1 as they are not considered to be secure enough. Most modern browser won't accept them at all.

Usage with Vite

To use this plugin together with vite use the configuration below.

import { defineConfig } from "vite"
import sri from "rollup-plugin-sri"

export default defineConfig({
  plugins: [
    {
      enforce: "post",
      ...sri({ publicPath: "/" })
    }
  ]
})

NOTE: Becuase of the way vite works, this plugin only applies SRIs when building for production. To get the same experience in development mode, check out vite-plugin-sri!

Options

For the most up-to-date version of the options see the autogenerated docs.

Optional active

Type: boolean default true

Can be used to disable the plugin, as subresource integrities might cause issues with hot module reloading.


Optional algorithms

Type: Array[string | sha256 | sha384 | sha512] default ["sha384"]

A list of hashing algorithms to use when computing the integrity attribute. The hashing algorithm has to be supported by the nodejs version you're running on and by the Browser you're targeting. Browsers will ignore unknown hashing functions. Standard hash functions as defined in the subresource integrity specification are: sha256, sha384 and sha512.

NOTE: While browser vendors are free to support more algorithms than those stated above, they generally do not accept sha1 and md5 hashes.


Optional crossorigin

Type: "anonymous" | "use-credentials" default "anonymous"

Specifies the value for the crossorigin attribute. This attribute has to be set to prevent cross-origin data leakage. The default value anonymous should be okay for normal use. see: the W3C spec for details.


Optional selectors

Type: Array[string] default ["script","link[rel=stylesheet]"]

A list of strings you can provide that the plugin will use to match html tags with. It will then try to compute an integrity attribute for the matched tag. Currently it only matches script tags and link with rel=stylesheet as per specification. see the W3C spec for more information. The selector syntax is the same as jQuery's.

Optional publicPath

Type: string default ""

Commonly assets will be prefixed with a public path, such as "/" or "/assets". Setting this option to the public path allows plugin-sri to resolve those imports.

Contributing

For bug reports or feature requests please create an issue on github. When working on a feature contribution, please ensure the following things:

  • Keep you code clear and readable.
  • Write unit tests for your feature (run yarn test).
  • Use the convetional-commits style when writing commit messages.
  • Use appropriate commit types, When adding tests use test: when adding a feature use feat: etc.
  • Split up the files you commit logically not by workday or something else, for example all test belonging to a new feature should be in their own commit and not bunched together with other changes or tests for other features.

Sponsoring

Are you using imagetools in your company, in a commercial project or just feeling generous? Consider sponsoring me on GitHub to support the development and get your companies logo featured!

License

MIT Β© Jonas Kruckenberg.