Socket
Socket
Sign inDemoInstall

gulp-javascript-obfuscator

Package Overview
Dependencies
80
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-javascript-obfuscator

Gulp plugin for javascript-obfuscator Node.JS package.


Version published
Maintainers
1
Install size
9.62 MB
Created

Readme

Source

gulp-javascript-obfuscator

Gulp plugin for javascript-obfuscator.

Installation

Install the package with NPM:

npm install --save gulp-javascript-obfuscator

Usage

var gulp = require('gulp'),
    javascriptObfuscator = require('gulp-javascript-obfuscator');


gulp.src('file.js')
    .pipe(javascriptObfuscator())
    .pipe(gulp.dest('dist'));

Options

Pass any options available in the obfuscator.

gulp.src('file.js')
    .pipe(javascriptObfuscator({
        compact:true
        sourceMap: true
    }))
    .pipe(gulp.dest('dist'));

Using sourceMap option with value set to true will also output a .map file to Gulp stream.

Keywords

FAQs

Last updated on 27 Oct 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