
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.
Want to use the awesome powers of npm but can't/don't want to use browserify? Then maybe this module is for you...
Install umd-ify either locally for your project(npm i umd-ify) or global
(npm i -g umd-ify).
umd-ify goes through your node_modules/ folder and packages each of your
dependencies as a UMD module and puts them into
a folder for you.
Just run this command in the root of your project:
umdify --dir umd_modules/
You can also define it as a script in your package.json file:
{
"name": "my-awesome-module",
"dependencies": {
"browserify": "^7.0.0",
"concat-stream": "^1.4.7",
"minimist": "^1.1.0"
},
"dev-dependencies": {
"umd-ify": "^1.0.0"
},
"scripts": {
"build-dependencies": "umdify --dir umd_modules"
}
}
If you want to you can also use umd-ify programatically by using its API.
It is pretty straight-forward:
var umdify = require('umd-ify')
umdify('/path/to/project', '/path/to/output/dir', function(err) {
if(err) return console.error(err)
console.log('Done!')
})
To execute the tests simply run npm test
FAQs
Convert your node_modules/ into UMD files
We found that umd-ify 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.