Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@bakeryjs/logger
Advanced tools
Simple and Customisable Logger for Node.js Applications
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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.