Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
args-pattern
Advanced tools
A Nodejs lib that arranges the arguments passed to a function based on pattern string
A Nodejs lib that arranges the arguments passed to a function based on pattern string
This library intends to help the developers to maintain backwards compatibility in their functions, by making and maintaining optional parameters, and not worrying to write code to assign the correct values to the arguments
npm install parse-args -S
// params ([name], [email], age, [gender])
function testFn(name="vin", email="diesel@mail.com", age, gender="female"){
if(!email) {
age = name;
name = "vin"
} else if (!age) {
age = email
email = "diesel@mail.com"
}
}
testFn("john", 34)
var parseArgs = require("args-pattern")
function testFn() {
let [name, email, age, gender] = parseArgs(arguments, "[name] [, email] , age [, gender]", {
args: ['vin', 'diesel@mail.com', 34, "female"]
})
// Output name === "john"
// Output email === "diesel@mail.com"
// Output age === 35
// Output gender === "female"
}
testFn("john", 35)
Even though the real world examples can get a little more complicate, parse-args
library
will be there to rescue, so that you can avoid a lot of spaghetti code :thumbsup:
npm install
mocha test.js
MIT
FAQs
A Nodejs lib that arranges the arguments passed to a function based on pattern string
The npm package args-pattern receives a total of 3 weekly downloads. As such, args-pattern popularity was classified as not popular.
We found that args-pattern 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.