expect-ct
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Expect-CT middleware

The Expect-CT HTTP header tells browsers to expect Certificate Transparency. For more, see this blog post and the article on MDN.

Usage:

const expectCt = require("expect-ct");
 
// Sets Expect-CT: max-age=123
app.use(expectCt({ maxAge: 123 }));
 
// Sets Expect-CT: enforce, max-age=123
app.use(
  expectCt({
    enforce: true,
    maxAge: 123,
  })
);
 
// Sets Expect-CT: enforce, max-age=30, report-uri="https://example.com/report"
app.use(
  expectCt({
    enforce: true,
    maxAge: 30,
    reportUri: "https://example.com/report",
  })
);

Package Sidebar

Install

npm i expect-ct

Weekly Downloads

116,874

Version

1.0.0

License

MIT

Unpacked Size

4.76 kB

Total Files

6

Last publish

Collaborators

  • evanhahn