Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T09:02:11.000Z (about 1 month ago)
- Last Synced: 2024-10-07T09:11:08.781Z (about 1 month ago)
- Topics: cryptography, gnirts, gulp, gulpplugin, hexadecimal-escape, javascript, literal, mangle, obfuscate, obfuscated, obfuscation, obfuscator, password, secret, security, string
- Language: JavaScript
- Homepage:
- Size: 96.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-gnirts
[![npm](https://img.shields.io/npm/v/gulp-gnirts.svg)](https://www.npmjs.com/package/gulp-gnirts) [![GitHub issues](https://img.shields.io/github/issues/anseki/gulp-gnirts.svg)](https://github.com/anseki/gulp-gnirts/issues) [![David](https://img.shields.io/david/anseki/gulp-gnirts.svg)](package.json) [![license](https://img.shields.io/badge/license-MIT-blue.svg)](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/'));
});
```