babel-plugin-xss
v1.0.0-beta-2
Published
babel plugin for preventing XSS.
Downloads
7
Maintainers
Readme
Babel Plugin XSS
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.