
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
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 18,418 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.