Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
gemini-configparser
Advanced tools
Parser for gemini
configuration files.
Config is described with a combination of a functions:
var parser = root(section({
system: section({
parallelLimit: option({
parseEnv: Number,
parseCli: Number,
validate: function() {...}
})
}),
browsers: map(
section({
calibrate: option(...),
windowSize: option(...)
})
)
})
There are 4 types of values:
option({defaultValue, parseCli, parseEnv, validate, map})
- a single scalar option.
defaultValue
- a default value to use if option is not provideddefaultValue(config, currentNode)
- a function to compute default valueparseCli(value)
- a function used to parse command-line argumentsparseEnv(value)
- a function used to parse environment variablevalidate(value, config, currentNode, meta)
- a function used to validate the option valuemap(value, config, currentNode, meta)
- a function used to transform the option valuesection({sectionName1: valueParser1, sectionName2: valueParser2, ...})
- a section of a
values with specified key names. Each option will parsed with appropriate parser function.
Any unknown value passed by user will be treated as an error.map(valueParser, defaultValue)
- a map with any number of user-specified keys. Each value is parsed by
valueParser
. If set, defaultValue
will be used in case of no user-specified data provided.root(parser, {envPrefix, cliPrefix})
- creates a root config parsers from specifed parser function. Returns function with signature f({options, env, argv})
.FAQs
Config parser module for gemini
The npm package gemini-configparser receives a total of 5,784 weekly downloads. As such, gemini-configparser popularity was classified as popular.
We found that gemini-configparser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.