
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
babel-plugin-dynamic-import-node
Advanced tools
Babel plugin to transpile import() to a deferred require(), for node
Babel plugin to transpile import() to a deferred require(), for node. Matches the proposed spec.
NOTE: Babylon >= v6.12.0 is required to correctly parse dynamic imports.
npm install babel-plugin-dynamic-import-node --save-dev
.babelrc (Recommended).babelrc
{
"plugins": ["dynamic-import-node"]
}
noInterop - A boolean value, that if true will not interop the require calls. Useful to avoid using require('module').default on commonjs modules.{
"plugins": [
["dynamic-import-node", { "noInterop": true }]
]
}
$ babel --plugins dynamic-import-node script.js
require('babel-core').transform('code', {
plugins: ['dynamic-import-node']
});
Promise.all([
import('./lib/import1'),
import('./lib/import2')
]).then(([
Import1,
Import2
]) => {
console.log(Import1);
/* CODE HERE*/
});
This package allows Babel to parse the dynamic import() syntax. However, unlike babel-plugin-dynamic-import-node, it does not transpile import() to require(). It's used in conjunction with other plugins or presets that handle the transformation or in environments that support dynamic imports.
Similar to babel-plugin-dynamic-import-node, this plugin transforms dynamic import() syntax into a require() call. The difference lies in the implementation details and the specific use cases they target. While babel-plugin-dynamic-import-node is focused on Node.js environments, babel-plugin-transform-dynamic-import may offer broader compatibility or different configuration options.
FAQs
Babel plugin to transpile import() to a deferred require(), for node
The npm package babel-plugin-dynamic-import-node receives a total of 4,374,268 weekly downloads. As such, babel-plugin-dynamic-import-node popularity was classified as popular.
We found that babel-plugin-dynamic-import-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.