
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
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 16,523 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.