Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
babel-plugin-es6-promise-esm
Advanced tools
Babel plugin that rewrites Promise references to es6-promise, support ESM for Rollup
Babel plugin that rewrites Promise references to es6-promise
, but only if
necessary. Support ES Module, Rollup.
Forked from https://github.com/novemberborn/babel-plugin-es6-promise.
$ npm install --save-dev babel-plugin-es6-promise-esm
Then add es6-promise
to your Babel config, like:
{
"plugins": ["es6-promise-esm"]
}
es6-promise
must be installed separately.
This plugin rewrites files that reference the Promise
built-in. It inserts the
following code at the top of each file:
import _ESPromise from "es6-promise";
var _Promise = typeof Promise === 'undefined'
? _ESPromise.Promise
: Promise
This means es6-promise
is only loaded when there is no Promise
built-in
available. Each Promise
reference is rewritten to _Promise
.
Note that require()
is used rather than a ES2015 module import. This may make
it difficult to do further import transforms.
Also note that the _Promise
variable name in this example is determined by
Babel and may differ depending on your code.
FAQs
Babel plugin that rewrites Promise references to es6-promise, support ESM for Rollup
The npm package babel-plugin-es6-promise-esm receives a total of 1 weekly downloads. As such, babel-plugin-es6-promise-esm popularity was classified as not popular.
We found that babel-plugin-es6-promise-esm 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.