Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-jscrambler

Package Overview
Dependencies
Maintainers
1
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-jscrambler

Obfuscate your source files using the JScrambler API.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
870
decreased by-6.25%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-jscrambler

Obfuscate your source files.

Install

Install with npm.

npm install --save-dev gulp-jscrambler

Examples

var gulp = require('gulp');
var jScrambler = require('gulp-jscrambler');

gulp.task('default', function () {
  gulp
    .src('app/**/*.js')
    .pipe(jScrambler({
      keys: {
        accessKey: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
        secretKey: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
      },
      deleteProject: true
    }))
    .pipe(gulp.dest('dist/'));
});

Options

keys.accessKey

Type: String

A string value that is used to provide the JScrambler API with the access key.

keys.secretKey

Type: String

A string value that is used to sign requests to the JScrambler API.

deleteProject

Type: Boolean

If this is set to true then the project will be deleted from JScrambler after it has been downloaded.

params

Type: Object

You can find a list of all the possible parameters in here.

Keywords

FAQs

Package last updated on 06 May 2014

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc