
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@bakeryjs/logger
Advanced tools
Simple and Customisable Logger for Node.js Applications
Install library via npm:
$ npm install @bakeryjs/logger
Create a new logger via Builder:
const logger = Logger.Builder()
.disable(level => level === Logger.Levels.DEBUG) // disable only debug messages
.file(timestamp => {
const date = new Date(timestamp).toISOString().split('T')[0];
return `${date}.log`; // file name in format: YYYY-MM-DD.log
})
.format((timestamp, level, message) => {
const time = new Date(timestamp).toISOString()
.split('T')[1]
.split('.')[0];
return `${time} [${level.toUpperCase()}]: ${message}`;
})
.handle((timestamp, level, message) => {
// TODO: handle log message
})
.build();
logger.log('CUSTOM-LEVEL', 'custom level message');
logger.debug('debug message'); // won't be printed as in console as in file
logger.info('info message');
logger.warn('warn message');
logger.error('error message');
Or use the default one:
const logger = Logger.Default();
// logger.disable = true; // disable if needed
logger.debug('debug message');
(method) Logger.log(level: string, message: string)
(method) Logger.info(message: string)
(method) Logger.warn(message: string)
(method) Logger.error(message: string)
(method) Logger.debug(message: string)
(method) disable(value: boolean | (level: string) => boolean): Logger.Builder
(method) file(value: string | (timestamp: number, level: string) => string): Logger.Builder
(method) format(value: (timestamp: number, level: string, message: string) => string): Logger.Builder
(method) handle(value: (timestamp: number, level: string, message: string) => void): Logger.Builder
(method) build(): Logger
FAQs
Simple and Customisable Logger for Node.js Applications
We found that @bakeryjs/logger 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.