gnirts-loader
v1.0.8
Published
gnirts loader module for webpack - Obfuscate string literals in JavaScript code.
Downloads
478
Maintainers
Readme
gnirts-loader
gnirts loader module for webpack.
- Grunt plugin: grunt-gnirts
- gulp plugin: gulp-gnirts
Obfuscate string literals in JavaScript code.
See gnirts for more information about gnirts.
Installation
npm install --save-dev gnirts-loader gnirts
Usage
Documentation:
- Loaders
- Using loaders (for webpack v1)
For example:
// webpack.config.js
module.exports = {
entry: './app.js',
output: {
filename: 'bundle.js'
},
module: {
rules: [{
test: /\.js$/,
loader: 'gnirts-loader'
}]
}
};