
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@log4js-node/logfaces-udp
Advanced tools
The logFaces appenders send JSON formatted log events to logFaces receivers. This appender uses UDP to send the events (there is another logFaces appender that uses HTTP). It uses the node.js core UDP support, so you do not need to include any other dependencies.
npm install log4js @log4js-node/logfaces-udp
type - @log4js-node/logfaces-udpremoteHost - string (optional, defaults to '127.0.0.1')- hostname or IP address of the logFaces receiverport - integer (optional, defaults to 55201) - port the logFaces receiver is listening onapplication - string (optional, defaults to empty string) - used to identify your application's logsThis appender will also pick up Logger context values from the events, and add them as p_ values in the logFaces event. See the example below for more details.
log4js.configure({
appenders: {
logfaces: { type: '@log4js-node/logfaces-udp' }
},
categories: {
default: { appenders: [ 'logfaces' ], level: 'info' }
}
});
const logger = log4js.getLogger();
logger.addContext('requestId', '123');
logger.info('some interesting log message');
logger.error('something has gone wrong');
This example will result in two log events being sent via UDP to 127.0.0.1:55201. Both events will have a p_requestId property with a value of 123.
FAQs
LogFaces UDP Appender for log4js-node
The npm package @log4js-node/logfaces-udp receives a total of 0 weekly downloads. As such, @log4js-node/logfaces-udp popularity was classified as not popular.
We found that @log4js-node/logfaces-udp 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.