
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
babel-plugin-reexport
Advanced tools
Allows re-exporting a node module
npx babel ./node_modules/some-package/dir --out-dir ./export-dir --plugins=reexport
Typically this is what you'd need to do to make sure that the path of the package you're trying to export is resolved by node.
/* eslint-disable no-console */
const path = require('path');
const { spawn } = require('child_process');
const pkgPath = path.dirname(require.resolve('some-package/dir'));
const babelPath = require.resolve('@babel/cli/bin/babel');
const configPath = path.join(__dirname, '.babelrc');
const outPath = path.join(process.cwd(), 'export-dir');
const babel = spawn(
babelPath,
[pkgPath, '--out-dir', outPath, '--config-file', configPath],
{
stdio: [process.stdin, process.stdout, process.stderr],
}
);
The generated output files would contain only the re-export statements from the original package.
For example this
// some-package/dir/MyClass.js
class MyClass {}
export default MyClass
outputs this
export { default } from 'some-package/dir/MyClass'
This plugin supports the following
Default exports: export default MyClass
-> export { default } from "<path>"
Named default exports: export { default } from './MyClass'
-> export { default } from "<path>"
Named exports: export const Foo = 'bar'
-> export * from "<path>"
FAQs
Allows re-exporting a node module
The npm package babel-plugin-reexport receives a total of 47 weekly downloads. As such, babel-plugin-reexport popularity was classified as not popular.
We found that babel-plugin-reexport 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.