
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
justo-plugin-babel
Advanced tools
Plugin for running Babel.
Proudly made with ♥ in Valencia, Spain, EU.
npm install justo-plugin-babel
const babel = require("justo-plugin-babel");
To run babel, the task must be called as follows:
babel(opts, config) : number
The task returns the number of transpiled files.
config properties:
comments (boolean). Add comments to the output: true, yep; false, nope. Default: true.files (object[]). The files to compile:
src (string or string[]). The files to compile.dst (string). The output.presets (string[]) or preset (string). Presets to load and use.plugins (string[]) or plugin (string). Plugins to load and use.retainLines (boolean). Retain line numbers: true, yep, false, nope. Default: false.compact (boolean). Compact the output, not including superfluous whitespaces and line terminators? Default: false.babelrc (boolean). Use .babelrc and .babelignore files? Default: true.ignore (string, RegExp, object[]). Ignore the given files?Examples:
//index.js -> build/es5/index.js
//lib/* -> build/es5/lib/*
babel("Build", {
presets: ["es2015"],
comments: false,
retainLines: true,
files: [
{src: "index.js", dst: "build/es5/index.js"},
{src: "lib/", dst: "build/es5/"}
]
});
//index.js -> build/es5/index.js
//lib/* -> build/es5/lib/*
babel("Build", {
preset: "es2015",
comments: false,
retainLines: true,
files: {
src: ["index.js", "lib/"],
dst: "build/es5/"
}
});
//index.js -> build/es5/index.js
//lib/* -> build/es5/lib/*
babel("Build", {
preset: "es2015",
comments: false,
retainLines: true,
src: ["index.js", "lib/"],
dst: "build/es5/"
});
FAQs
Plugin for running Babel.
We found that justo-plugin-babel 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.