A universal Subresource Integrity (SRI) utility for Node.js, browsers, Cloudflare Workers, Deno, Bun, and other web-compatible runtimes.
Find a file
2024-10-01 03:37:36 +00:00
.github/workflows Update actions/setup-node digest to 0a44ba7 2024-10-01 03:37:36 +00:00
runtime Rename Integrity-metadata.test.ts to integrity-metadata.test.ts 2024-09-05 20:32:40 +09:00
src update match to return false for unsupported, null, empty, or invalid hash algorithms 2024-09-18 16:14:32 +09:00
test update match to return false for unsupported, null, empty, or invalid hash algorithms 2024-09-18 16:14:32 +09:00
.gitignore create subresourceintegrity 2024-09-03 03:14:59 +09:00
.release-it.json create subresourceintegrity 2024-09-03 03:14:59 +09:00
CHANGELOG.md update changelog 2024-09-09 19:28:19 +09:00
package-lock.json Update dependency @types/node to v22.5.4 2024-09-05 01:24:31 +00:00
package.json add keywords to package.json 2024-09-05 19:37:01 +09:00
README.md update package manager commands 2024-09-18 16:28:15 +09:00
renovate.json set up monthly renovations 2024-09-06 10:11:57 +09:00
tsup.config.ts create subresourceintegrity 2024-09-03 03:14:59 +09:00

websri

NPM Version jsDocs.io

websri is a universal Subresource Integrity (SRI) utility for Node.js, browsers, Cloudflare Workers, Deno, Bun, and other web-compatible runtimes.

Usage

Install package:

# npm
npm install websri

# yarn
yarn add websri

# pnpm
pnpm add websri

# deno
deno add npm:websri

# bun
bun add websri

Integrity Metadata:

import { createIntegrityMetadata } from "websri";

const res = new Response("Hello, world!");
const data = await res.arrayBuffer();
const integrityMetadata = await createIntegrityMetadata("sha256", data);

console.log(integrityMetadata.toString());
// sha256-MV9b23bQeMQ7isAGTkoBZGErH853yGk0W/yUx1iU7dM=

Documentation

API Reference

FAQ

What is Subresource Integrity?

Subresource Integrity (SRI) is a security feature that allows user agents to verify that a fetched resource has not been manipulated unexpectedly.

License

websri is released under the MIT License.