Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Turn npm package scripts into CLI commands
Since npm 2.0, you can pass arguments to scripts... wait... what if you could use that for creating CLIs? Homerun is a little experiment that lets you just do that. If you need more, I highly recommend minimist.
Let's say you have a script called add
that you can run this way:
npm run add -- 1 2
3
Install homerun
npm install homerun --save
Add it to your package.json
{
"name": "cli"
"bin": "./node_modules/.bin/homerun" // <-- here
"scripts": {
"add": "node commands/add"
}
}
Now, without any other setup, if you npm link
or npm publish
you get a CLI for free:
cli add 1 2
3
And of course, while you develop, you can still use npm run add -- 1 2
to test your command.
Homerun will use these scripts in case no command is provided or matches.
"scripts": {
"index": "node commands/index" // no command provided
"unknown": "node commands/help" // unknown command provided
}
If you need to customize, homerun can be used as a module.
// index.js
var homerun = require('homerun')
var scripts = require('./package.json').scripts
homerun(scripts, process.argv).spawn()
// package.json
{
"bin": "index.js"
}
To test your commands, you can use homerun.exec()
var assert = require('assert')
var argv = [,, 'add', '1', '2']
homerun(scripts, argv).exec(function(err, stdout, stderr) {
assert.equal(err, null)
assert.equal('', stderr)
assert.equal('3\n', stdout)
})
Homerun doesn't support multiple commands. For example, echo foo && echo bar
won't work.
MIT - Typicode
FAQs
Turn package scripts into commands
The npm package homerun receives a total of 0 weekly downloads. As such, homerun popularity was classified as not popular.
We found that homerun 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.