1.0.0-beta-2 • Published 5 years ago

babel-plugin-xss v1.0.0-beta-2

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

Babel Plugin XSS Build Status Codecov npm package

Examples

Install

npm install babel-plugin-xss --save-dev

Use

Add a .babelrc file and write:

{
  "plugins": [
    "babel-plugin-xss"
  ]
}

or pass the plugin with the plugins-flag on CLI

babel-node myfile.js --plugins babel-plugin-xss

Customize

If you want to enable different file extensions, you can define them in your .babelrc file

{
  "plugins": [
    ["babel-plugin-xss", {
      "handler": (content) => {
        return content.replace(/alert/);
      }
    }]
  ]
}

Motivate

If you like this project just give it a star :) I like stars.