
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
exec-promise
Advanced tools
Testable CLIs with promises
Features
TODO
Download manually or with package-manager.
npm install --save exec-promise
This library requires promises support, for Node versions prior to 0.12 see this page to enable them.
import execPromise from 'exec-promise'
// - The command line arguments are passed as first parameter.
// - Node will exists as soon as the promise is settled (with a code
// different than 0 in case of an error).
// - All errors are catched and properly displayed with a stack
// trace.
// - Any returned value (i.e. not undefined) will be prettily
// displayed
execPromise(async args => {
// ... do what you want here!
})
module.exports = function (args) {
if (args.indexOf('-h') !== -1) {
return 'Usage: my-program [-h | -v]'
}
if (args.indexOf('-v') !== -1) {
var pkg = require('./package')
return 'MyProgram version ' + pkg.version
}
var server = require('http').createServer()
server.listen(80)
// The program will run until the server closes or encounters an
// error.
return require('event-to-promise')(server, 'close')
}
// Executes the exported function if this module has been called
// directly.
if (!module.parent) {
require('exec-promise')(module.exports)
}
Contributions are very welcome, either on the documentation or on the code.
You may:
ISC © Julien Fontanet
FAQs
Testable CLIs with promises
The npm package exec-promise receives a total of 4,529 weekly downloads. As such, exec-promise popularity was classified as popular.
We found that exec-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.