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

csp-merge

v0.1.12

Published

Merge Content Security Policy (CSP) strings safely without breaking existing rules.

Downloads

848

Readme

csp-merge

NPM version NPM downloads Dependency Status License

Merge Content Security Policy (CSP) strings safely without breaking existing rules.

A small utility for intelligently merging CSP headers instead of overwriting them — perfect for Next.js, Express, and any Node.js framework.


Why?

Manually overriding CSP headers is risky and error-prone. A small mistake can silently weaken your site’s security.

csp-merge merges CSP directives correctly by:

  • ✓ Combining compatible directives (e.g., script-src, style-src)
  • ✓ Overriding only directives that must be single-valued (e.g., report-uri)
  • ✓ Deduplicating sources automatically
  • ✓ Preserving existing security rules
  • ✓ Full TypeScript support

Install

npm install csp-merge

or

yarn add csp-merge

or

pnpm add csp-merge

Basic Usage

import { mergeCsp } from "csp-merge";

const existing = "default-src 'self'; script-src 'unsafe-inline'";
const incoming = "script-src https://cdn.example.com; img-src *";

const merged = mergeCsp(existing, incoming);

// default-src 'self'; script-src 'unsafe-inline' https://cdn.example.com; img-src *
// Notice: script-src sources are combined, img-src is added, default-src is preserved

Next.js Middleware Example

import { mergeCsp } from "csp-merge";
import { NextResponse } from "next/server";

export function middleware(request) {
    const response = NextResponse.next();
    const currentCsp = response.headers.get("Content-Security-Policy") || "";

    response.headers.set(
        "Content-Security-Policy",
        mergeCsp(currentCsp, "frame-ancestors 'self' https://trusted.com"),
    );

    return response;
}

Express Example

import { mergeCsp } from "csp-merge";

app.use((req, res, next) => {
    const current = res.getHeader("Content-Security-Policy") || "";
    const updated = mergeCsp(
        current,
        "frame-ancestors 'self' https://example.com",
    );

    res.setHeader("Content-Security-Policy", updated);
    next();
});

How It Works

  • Combines values for multi-value directives (script-src, style-src, frame-ancestors, etc.)

  • Overrides single-value directives (report-uri, report-to)

  • Deduplicates all sources automatically

  • Preserves existing CSP rules instead of weakening them

Advanced API

For more control, work directly with parsed CSP objects:

import { parseCsp, mergeCspObjects, stringifyCsp } from "csp-merge";

// Parse CSP string into an object
const basePolicy = parseCsp("default-src 'self'; script-src 'unsafe-inline'");
// {
//   "default-src": Set(["'self'"]),
//   "script-src": Set(["'unsafe-inline'"])
// }

// Parse another policy
const additionalPolicy = parseCsp(
    "script-src https://cdn.example.com; img-src *",
);

// Merge two parsed CSP objects
const merged = mergeCspObjects(basePolicy, additionalPolicy);

// Convert back to a CSP string
const result = stringifyCsp(merged);
// "default-src 'self'; script-src 'unsafe-inline' https://cdn.example.com; img-src *"

TypeScript Support

Full TypeScript types included:

import { mergeCsp, parseCsp, stringifyCsp } from "csp-merge";

const policy: string = mergeCsp(
    "default-src 'self'",
    "script-src https://example.com",
);

const parsed: Map<string, Set<string>> = parseCsp(policy);

When Should You Use This?

  • Modifying CSP headers in Next.js middleware
  • Adding CSP rules in Express / Fastify
  • Dynamically extending CSP rules in plugins or middleware
  • Avoiding accidental CSP overrides
  • Building CSP management systems

License

MIT © 2024 Mehedi Hassan