https://github.com/anseki/gnirts-loader
gnirts loader module for webpack - Obfuscate string literals in JavaScript code.
https://github.com/anseki/gnirts-loader
literal loader mangle obfuscate obfuscation obfuscator password secret security string webpack
Last synced: 5 months ago
JSON representation
gnirts loader module for webpack - Obfuscate string literals in JavaScript code.
- Host: GitHub
- URL: https://github.com/anseki/gnirts-loader
- Owner: anseki
- License: mit
- Created: 2017-03-24T07:32:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T08:57:11.000Z (over 1 year ago)
- Last Synced: 2025-11-24T06:13:03.145Z (7 months ago)
- Topics: literal, loader, mangle, obfuscate, obfuscation, obfuscator, password, secret, security, string, webpack
- Language: JavaScript
- Size: 72.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gnirts-loader
[](https://www.npmjs.com/package/gnirts-loader) [](https://github.com/anseki/gnirts-loader/issues) [](package.json) [](LICENSE)
[gnirts](https://github.com/anseki/gnirts) loader module for [webpack](https://webpack.js.org/).
* [Grunt](http://gruntjs.com/) plugin: [grunt-gnirts](https://github.com/anseki/grunt-gnirts)
* [gulp](http://gulpjs.com/) plugin: [gulp-gnirts](https://github.com/anseki/gulp-gnirts)
Obfuscate string literals in JavaScript code.
See [gnirts](https://github.com/anseki/gnirts) for more information about gnirts.
## Installation
```
npm install --save-dev gnirts-loader gnirts
```
## Usage
Documentation:
- [Loaders](https://webpack.js.org/concepts/loaders/)
- [Using loaders](http://webpack.github.io/docs/using-loaders.html) (for webpack v1)
For example:
```js
// webpack.config.js
module.exports = {
entry: './app.js',
output: {
filename: 'bundle.js'
},
module: {
rules: [{
test: /\.js$/,
loader: 'gnirts-loader'
}]
}
};
```