Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
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 29,315 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.