
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@brightsu/log5js
Advanced tools
Add something:
npm install @brightsu/log5js
npm install -g @brightsu/log5js
See Demo: examples/udp.js
log4js.configure({
appenders: {
console: {
type: 'console'
},
udpRemote: {
type: 'udp',
host: '225.0.0.110',
port: 1111
},
/* or set default host: '225.0.0.110' port: 1111
udpRemote: {
type: 'udp'
}
*/
},
categories: {
default: {appenders: ['console', 'udpRemote'], level: 'info'}
}
});
const logger = log4js.getLogger('myLogger');
setInterval(() => {
logger.info('Test log message %s', 'arg1', 'arg2');
}, 1000);
# default args: 225.0.0.110 1111
npx log5js 225.0.0.110 1111
# or default args 225.0.0.110 1111
npx log5js
# or install global
log5js 225.0.0.110 1111
This is a conversion of the log4js framework to work with node. I started out just stripping out the browser-specific code and tidying up some of the javascript to work better in node. It grew from there. Although it's got a similar name to the Java library log4j, thinking that it will behave the same way will only bring you sorrow and confusion.
The full documentation is available here.
There have been a few changes between log4js 1.x and 2.x (and 0.x too). You should probably read this migration guide if things aren't working.
Out of the box it supports the following features:
Optional appenders are available:
Having problems? Jump on the slack channel, or create an issue. If you want to help out with the development, the slack channel is a good place to go as well.
npm install log4js
Minimalist version:
var log4js = require("log4js");
var logger = log4js.getLogger();
logger.level = "debug";
logger.debug("Some debug messages");
By default, log4js will not output any logs (so that it can safely be used in libraries). The level
for the default
category is set to OFF
. To enable logs, set the level (as in the example). This will then output to stdout with the
coloured layout (thanks to masylum), so for the above you would see:
[2010-01-17 11:43:37.987] [DEBUG] [default] - Some debug messages
See example.js for a full example, but here's a snippet (also in examples/fromreadme.js
):
const log4js = require("log4js");
log4js.configure({
appenders: {cheese: {type: "file", filename: "cheese.log"}},
categories: {default: {appenders: ["cheese"], level: "error"}}
});
const logger = log4js.getLogger("cheese");
logger.trace("Entering cheese testing");
logger.debug("Got cheese.");
logger.info("Cheese is Comté.");
logger.warn("Cheese is quite smelly.");
logger.error("Cheese is too ripe!");
logger.fatal("Cheese was breeding ground for listeria.");
Output (in cheese.log
):
[2010-01-17 11:43:37.987] [ERROR] cheese - Cheese is too ripe!
[2010-01-17 11:43:37.990] [FATAL] cheese - Cheese was breeding ground for listeria.
If you're writing a library and would like to include support for log4js, without introducing a dependency headache for your users, take a look at log4js-api.
Available here.
There's also an example application.
import {configure, getLogger} from "log4js";
configure("./filename");
const logger = getLogger();
logger.level = "debug";
logger.debug("Some debug messages");
configure({
appenders: {cheese: {type: "file", filename: "cheese.log"}},
categories: {default: {appenders: ["cheese"], level: "error"}}
});
We're always looking for people to help out. Jump on slack and discuss what you want to do. Also, take a look at the rules before submitting a pull request.
The original log4js was distributed under the Apache 2.0 License, and so is this. I've tried to keep the original copyright and author credits in place, except in sections that I have rewritten extensively.
FAQs
Port of Log4js to work with node.
The npm package @brightsu/log5js receives a total of 3 weekly downloads. As such, @brightsu/log5js popularity was classified as not popular.
We found that @brightsu/log5js 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.