
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
babel-node-modules
Advanced tools
simple wrapper for babel-register to make including ES6 modules easier
simple wrapper for babel-register to make including ES6 modules easier
$ npm install --save-dev babel-node-modules
...or:
$ yarn add --dev babel-node-modules
This is for making the process of using ES6/ES2015 modules (using import syntax rather than CommonJS's require style) in projects easier, especially when testing, which can be a bit of a nightmare. This is specifically for when an ES6 module has been installed via npm or yarn and resides somewhere in your node_modules/ directory.
First write your test file in ES6/ES2015, including importing any ES6/ES2016 modules.
test/test.js
import assert from 'assert'
import {hello} from 'helloworld'
describe('if this works, everything compiled fine', () => {
it('string should match', () => {
assert(hello() === 'hello stranger!')
assert(hello('John') === 'hello John!')
})
})
test/node_modules/helloworld/world.js
export function hello (name = 'stranger') {
return `hello ${name}!`
}
test/node_modules/helloworld/package.json
{
"name": "helloworld",
"main": "world.js"
}
test/testPolyfill.js
require('babel-node-modules')([
'helloworld' // add an array of module names here
])
...then run your tests:
$ mocha --require test/testPolyfill.js
FAQs
simple wrapper for babel-register to make including ES6 modules easier
We found that babel-node-modules 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.