Gathering detailed insights and metrics for log4js-node-syslog-pro
Gathering detailed insights and metrics for log4js-node-syslog-pro
Gathering detailed insights and metrics for log4js-node-syslog-pro
Gathering detailed insights and metrics for log4js-node-syslog-pro
npm install log4js-node-syslog-pro
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
42 Commits
3 Branches
1 Contributors
Updated on Oct 10, 2022
Latest Version
1.0.3
Package Id
log4js-node-syslog-pro@1.0.3
Unpacked Size
6.43 kB
Size
2.83 kB
File Count
6
NPM Version
6.14.8
Node Version
12.18.3
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
Syslog appender for log4js-node. Syslog messages are send with syslog-pro.
Only RFC3164 and RFC5424 formate are suporteed at the moment.
npm install log4js-node-syslog-pro --save
1const log4js = require('log4js') 2 3log4js.configure({ 4 appenders: { 5 syslog: { 6 type: 'log4js-node-syslog-pro', 7 // SyslogPro options: https://cyamato.github.io/SyslogPro/module-SyslogPro-RFC3164.html 8 server: { 9 target: 'localhost', // default 10 port: 514 // default 11 }, 12 applacationName: 'My-App', 13 facility: 23, // default 14 format: 'rfc3164' 15 } 16 }, 17 categories: { default: { appenders: ['syslog'], level: 'debug' } } 18}) 19const logger = log4js.getLogger() 20 21logger.info('My log message!') 22// --> 2019-10-23 14:56:41 Local7.Debug my-hostname Oct 23 02:56:41 my-hostname My-App [DEBUG] default - My log message!
Log Level | Syslog Severity |
---|---|
trace | debug |
debug | debug |
info | info |
warning | warning |
error | error |
fatal | critical |
Facility Number | Facility Description |
---|---|
0 | kernel messages |
1 | user-level messages |
2 | mail system |
3 | system daemons |
4 | security/authorization messages |
5 | messages generated internally by syslog |
6 | line printer subsystem |
7 | network news subsystem |
8 | UUCP subsystem |
9 | clock daemon |
10 | System0 |
11 | System1 |
12 | System2 |
13 | System3 |
14 | System4 |
15 | System5 |
16 | local use 0 (local0) |
17 | local use 1 (local1) |
18 | local use 2 (local2) |
19 | local use 3 (local3) |
20 | local use 4 (local4) |
22 | local use 6 (local6) |
23 | local use 7 (local7) |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
7 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More