Socket
Socket
Sign inDemoInstall

fastify-xss-filter

Package Overview
Dependencies
66
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fastify-xss-filter

Fastify plugin to set the X-XSS-Protection header


Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Install size
94.0 kB
Created
Weekly downloads
 

Readme

Source

fastify-xss-filter

Build Status Code coverage Code style Dependency Status Dev Dependency Status NPM version NPM downloads NPM license

Fastify plugin to set the X-XSS-Protection header.

Why?

You may know x-xss-protection as a xss filter middleware used in helmet. And you could use it as a middleware in fastify also. So why i made this plugin?

You may find the reason in benchmark result and wish you like it. :)

Difference

This plugin has passed all x-xss-protection test cases. And no difference in options.

Install

Via npm:

npm i fastify-xss-filter

Via yarn:

yarn add fastify-xss-filter

Usage

const fastify = require('fastify');
const fastifyXssFilter = require('fastify-xss-filter');

const app = fastify();
app.register(fastifyXssFilter, {
  // Your options
});

app.listen(3000, err => {
  if (err) throw err;
});

Option

This plugin has the same options as helmet.

reportUri {string}

Set report URI in header, you may find more detail here.

setOnOldIE {boolean}

Force to set header for IE whos version under 9. Default is false.

Changelog

  • 0.2.0:
    • Add test case
    • Add code coverage
    • Add benchmarks
  • 0.1.0:
    • Init version

Keywords

FAQs

Last updated on 09 Jul 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc