Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
babel-plugin-transform-amd-system-wrapper
Advanced tools
Wraps AMD scripts into System.registerDynamic(...
Wraps AMD modules into System.registerDynamic(...
In
define(['bar'], function(bar, require, module) {
module.exports = {
bar: bar
}
});
Babel Options
{
plugins: [
['transform-amd-system-wrapper', {
map: function(dep) {
return dep;
}
}]
]
}
Out
System.registerDynamic(['bar'], false, function ($__require, $__exports, $__module) {
'use strict';
$__module.uri = $__module.id;
return (function(bar, require, module) {
module.exports = {
bar: bar
}
}).call(this, $__require('bar'), $__require, $__module);
});
$ npm install babel-plugin-transform-amd-system-wrapper
.babelrc
.babelrc
{
"plugins": [
["transform-amd-system-wrapper", {
"systemGlobal": "SystemJS",
"filterMode": false,
"deps": []
}]
]
}
$ babel --plugins transform-amd-system-wrapper script.js
require("babel-core").transform("code", {
plugins: [
["transform-amd-system-wrapper", {
systemGlobal: "SystemJS", // Overwrites the default system global identifier. optional (default: 'System')
filterMode: true, // Flag to disable the transformation process. Enables the filter mode to filter AMD dependencies which will be added to output.metadata.amdDeps. optional (default: false)
esModule: true, // Indicates "__esModule" flag should be added to module if not already for named exports compatibility
deps: [], // Array of additional dependencies to add to the registerDynamic dependencies array. optional (default: [])
map: function(dep) {
return dep;
} // Dependency mapping function hook. optional (default: identity)
}]
]
});
FAQs
Wraps AMD scripts into System.registerDynamic(...
We found that babel-plugin-transform-amd-system-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.