Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
bower-logger
Advanced tools
The logger used in the various architecture components of Bower.
Alias to .log('error', id. message, data)
Alias to .log('conflict', id. message, data)
Alias to .log('warn', id. message, data)
Alias to .log('action', id. message, data)
Alias to .log('info', id. message, data)
Alias to .log('debug', id. message, data)
Emits a log
event, with an object like so:
logger.log('warn', 'foo', 'bar', { dog: 'loves cat' })
{
level: 'warn',
id: 'foo',
message: 'bar',
data: {
dog: 'loves cat'
}
}
Emits a prompt
event with an array of prompts
with a callback
.
prompts
can be an object or an array of objects. The callback
will be called with an
the answer or an object of answers (if prompts was only one or an array respectively).
The callback
is guaranteed to run only once.
logger.on('prompt', function (prompts, callback) {
// "prompts" is always an array of prompts
// Call "callback" with an object of answers when done
// In this example, we will use the inquirer module to do the
// prompting for us
inquirer(prompts, callback);
})
logger.prompt({
type: 'input' // Can be 'input', 'confirm' or 'password'
message: 'Type something',
validate: function (value) {
if (value !== 'I am awesome') {
return 'You must type "I am awesome"'
}
return true;
}
}, function (err, answer) {
// Error will only happen on unsupported 'type'
if (err) {
return console.error(err.message);
}
console.log(answer);
});
Pipes all logger events to another logger.
Basically all events emitted with .emit()
will get piped.
Creates a new logger that pipes events to the parent logger.
Alias for (new Logger()).pipe(logger)
.
Intercepts log
events, calling fn
before listeners of the instance.
A static property that contains an object where keys are the recognized log levels and values their importance.
The higher the importance, the more important the level is.
Released under the MIT License.
FAQs
The logger used in the various architecture components of Bower.
The npm package bower-logger receives a total of 23,051 weekly downloads. As such, bower-logger popularity was classified as popular.
We found that bower-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.