
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Plugin for @opt/parse allowing words to be options for nopt.
See @opt/parse
See @opt/nopt
See @use/core
npm install @opt/words --save
var parse = require('@opt/parse')
// make nopt the parser and apply our words plugin
parse.use('@opt/nopt', '@opt/words')
var options = {
file: [String, Array] // accept multiple strings
}
var aliases = {
// normal alias stuff for nopt still applies.
// these are what's after the prefix '-' or '--'.
f: '--file', // an example
// here's what this plugin handles.
$words: {
// everything here is a whole word, not prefixed with anything.
file: '--file'
}
}
// an example args array
var argv = [ 'node', 'some.js', 'file', 'some/file.js' ]
// then use parse as you would use `nopt`,
// plus any changes made possible by the plugins added
options = parse(options, aliases, argv, 2)
// the above would produce:
options = {
file: [ 'some/file.js' ],
argv: {
original: [ 'node', 'some.js', 'file', 'some/file.js' ]
cooked : [ 'node', 'some.js', '--file', 'some/file.js' ]
remain : []
}
}
// nopt would have had no `file` values and remain would be:
// [ 'file', 'some/file.js' ]
FAQs
Plugin for @opt/parse allowing words to be options for nopt
The npm package @opt/words receives a total of 0 weekly downloads. As such, @opt/words popularity was classified as not popular.
We found that @opt/words 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.