![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
If argument is not present ask for it. Returns a promise.
npm install --save askument
const params = {}
const promise = askument('id', 'Provide an ID:', params) // asks: Provide an ID:
const params = {}
const promise = askument('id', params) // asks: id?
const params = {id: 'xer389i9ads8'}
const promise = askument('id', 'Provide an ID:', params) // doesn't ask, resolves to 'xer389i9ads8'
askument
is a good companion for minimist.
See both of them in action:
const args = require('minimist')(process.argv.slice(2))
const askument = require('askument')
// ask for id if not set in arguments, or resolve to provided value when set
askument('id', args).then((id) => {
console.log(`Provided ID: ${id}`)
})
When you want to get multiple arguments you need to ensure they run in series because you can't read from the command line more than once at a time.
Luckily for us there's p-series, a good friend of askument
, which will help us get each argument in series.
Example:
const promises = [
() => askument('id', args),
() => askument('range', args),
() => askument('title', args)
]
// Ensure we get required arguments resolving promises in series.
series(promises).then((results) => {
const id = results[0]
const range = results[1]
const title = results[2]
console.log('- Provided ID:', id)
console.log('- Provided Range:', range)
console.log('- Provided Title:', title)
})
I wanted a dead simple way to ensure an argument is provided letting the user input it interactively instead of displaying the typical usage description.
FAQs
If argument is not present ask for it. Returns a promise.
The npm package askument receives a total of 0 weekly downloads. As such, askument popularity was classified as not popular.
We found that askument 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.