https://github.com/anseki/gulp-gnirts
Obfuscate string literals in JavaScript code.
https://github.com/anseki/gulp-gnirts
cryptography gnirts gulp gulpplugin hexadecimal-escape javascript literal mangle obfuscate obfuscated obfuscation obfuscator password secret security string
Last synced: 5 months ago
JSON representation
Obfuscate string literals in JavaScript code.
- Host: GitHub
- URL: https://github.com/anseki/gulp-gnirts
- Owner: anseki
- License: mit
- Created: 2015-08-15T17:13:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T09:02:11.000Z (over 1 year ago)
- Last Synced: 2025-10-23T06:41:35.847Z (8 months ago)
- Topics: cryptography, gnirts, gulp, gulpplugin, hexadecimal-escape, javascript, literal, mangle, obfuscate, obfuscated, obfuscation, obfuscator, password, secret, security, string
- Language: JavaScript
- Homepage:
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-gnirts
[](https://www.npmjs.com/package/gulp-gnirts) [](https://github.com/anseki/gulp-gnirts/issues) [](package.json) [](LICENSE)
This [gulp](http://gulpjs.com/) plugin is wrapper of [gnirts](https://github.com/anseki/gnirts).
* [Grunt](http://gruntjs.com/) plugin: [grunt-gnirts](https://github.com/anseki/grunt-gnirts)
* [webpack](https://webpack.js.org/) loader: [gnirts-loader](https://github.com/anseki/gnirts-loader)
Obfuscate string literals in JavaScript code.
See [gnirts](https://github.com/anseki/gnirts) for more information about gnirts.
## Getting Started
```shell
npm install gulp-gnirts --save-dev
```
## Usage
`gulpfile.js`
```js
var gulp = require('gulp'),
gnirts = require('gulp-gnirts');
gulp.task('default', function() {
return gulp.src('./develop/*.js')
.pipe(gnirts())
.pipe(gulp.dest('./public_html/'));
});
```