
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
bunyan-extended
Advanced tools
Framework logger, based on bunyan library.
If stream logstash
is used with pubsub queue (cfg.pubsub
set to true
) - app will not exit correctly (socket is still open).
You should close socket manually (logstashstream.redis.end()
): https://github.com/mranney/node_redis#clientend
#####First, load library in your app
var Logger = require('logger');
#####Second, init logging function with one of this methods: 1) Init by config
// all fields are optional except "name" and "level"
var cfg = {
name: 'my app',
console: {
level: 'info',
color: true,
timestamp: 'HH:mm:ss '
},
logstash: {
level: 'info',
key: 'logstash',
pubsub: false,
host: '127.0.0.1',
port: 6379,
db: 0
},
file: {
level: 'error',
path: 'error.log'
}
};
var log = new Logger(cfg);
log.error('i will appear only in file')
2) Create streams by yourself
var logger = new Logger('my app');
logger.appendStream({
stream: new Logger.stream.logstash(),
type: 'raw',
level: 'info'
});
logger.appendStream({
stream: new Logger.stream.console(),
type: 'raw',
level: 'info'
});
// if no appendStream called - will be created logger to console only
var log = logger.createLogger();
log.info('hello')
3) Pass streams on init in array
var log = new LoggerClass('my app', [{
stream: process.stdout,
level: 'info'
}]);
log.error('im usable');
4) Load preset
// will load config from presets/example.json
var log = new Logger('my app', 'example');
log.error('im usable');
Logger supports all bunyan features: passing custom fields, child logging, serializers, logging caugth JS expeptions and http responces, working with streams etc. Please visit bunyan documentation for more.
FAQs
Set of several presets for bunyan logger
The npm package bunyan-extended receives a total of 0 weekly downloads. As such, bunyan-extended popularity was classified as not popular.
We found that bunyan-extended demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.