Socket
Socket
Sign inDemoInstall

gulp-packer50x

Package Overview
Dependencies
58
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-packer50x

Obfuscate JavasScript via http://packer.50x.eu - This submits the source to the website and returns the result. Contents can be piped.


Version published
Weekly downloads
64
increased by3100%
Maintainers
1
Install size
810 kB
Created
Weekly downloads
 

Readme

Source

gulp-packer50x

Obfuscate JavasScript via http://packer.50x.eu. This submits the source to the website and returns the result. Contents can be piped.

Change Log

  • v1.0.60 - This is the first version that works. All prior versions will not work.

Installation

npm install gulp-packer50x

Usage


var packer50x = require('gulp-packer50x');

gulp.task('scripts', function() {
    gulp.src('./lib/*.js')
    .pipe(packer50x({
        mode: "normal", // (Optional - default: "normal"; Possible Values - "none", "numeric", "normal", "extended")
    }))
    .pipe(gulp.dest('./dist/'));
});
Options
  • mode - defaults to normal
    • none
    • numeric
    • normal
    • extended

License

ISC

Keywords

FAQs

Last updated on 05 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc