
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
gulp-javascript-obfuscator-patch
Advanced tools
Gulp plugin for javascript-obfuscator Node.JS package
Gulp plugin for javascript-obfuscator
Install the package with npm:
$ npm install --save gulp-javascript-obfuscator-patch
const gulp = require('gulp');
const javascriptObfuscator = require('gulp-javascript-obfuscator-patch');
gulp.src('file.js')
.pipe(javascriptObfuscator())
.pipe(gulp.dest('dist'));
Pass any options available in the obfuscator
gulp.src('file.js')
.pipe(javascriptObfuscator({
compact: true
}))
.pipe(gulp.dest('dist'));
The only exception is obfuscator's sourceMap
option which must not be set, as it will be handled automatically when using gulp-sourcemaps
.
With version 1.1.6
onwards, gulp-javascript-obfuscator can be used in tandem with gulp-sourcemaps in order to generate source maps for your javascript files.
You will need to initialize gulp-sourcemaps prior to running gulp-javascript-obfuscator and write the source maps after, as such:
const sourcemaps = require('gulp-sourcemaps');
gulp.src('file.js')
.pipe(sourcemaps.init())
.pipe(javascriptObfuscator({
compact: true
}))
.pipe(sourcemaps.write())
.pipe(gulp.dest('dist'));
This will output a file.js.map
file to the dist directory.
You can chain other gulp plugins as well:
const sourcemaps = require('gulp-sourcemaps');
gulp.src('file.js')
.pipe(sourcemaps.init())
// use babel to pre-process javascript files
.pipe(babel({
presets: ['@babel/preset-env']
}))
.pipe(javascriptObfuscator({
compact: true
}))
.pipe(sourcemaps.write())
.pipe(gulp.dest('dist'));
For backwards compatibility, if gulp-sourcemaps
is not used and obfuscator's sourceMap option is set to true, a .map file will be thrown to Gulp stream. (This method is deprecated and not recommended for future use.)
FAQs
Gulp plugin for javascript-obfuscator Node.JS package
The npm package gulp-javascript-obfuscator-patch receives a total of 18 weekly downloads. As such, gulp-javascript-obfuscator-patch popularity was classified as not popular.
We found that gulp-javascript-obfuscator-patch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.