
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.
Utility to parse terminal input into a JSON object
my-app --name "john doe" --is-admin
Options will be parsed like this:
{
"name": "john doe",
"is-admin": true
}
You can also use notations:
my-app --names.firstname joe --hobbies[0].name hockey
{
"names": {
"firstname": "jo"
},
"hobbies": [
{
"name": "hockey"
}
]
}
This utility only returns options and other arguments are ignored:
my-app connect --uri localhost --ssl
{
"uri": "localhost",
"ssl": true
}
npm install clipop
import clipop from 'clipop'
const [,, ...params] = process.argv
const options = clipop(...params) // clipop accepts a spread array of strings
--foo hello # "hello"
--foo 22 # "22"
--foo true # "true"
--foo false # "false"
--foo null # "null"
--foo # true
--foo ---22 # 22
--foo ---true # true
--foo ---false # false
--foo ---null # null
clipop<{ name: string }>(...params) // my-app --name joe
FAQs
Utility to parse terminal input into a JSON object
We found that clipop 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.