Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@17media/node-logger
Advanced tools
Centralized logger for 17.Media Node.JS projects
... in the fires of Mount Doom, the dark lord Sauron forged, in secret, a master logger to control all others.
"One logger to log them all!"
First of all you have to set up your configs:
import { Level } from '@17media/node-logger';
const loggerConfig = {
// configs shared by all log services
base: {
// minimum level to trigger logger [ERROR|WARN|INFO|DEBUG]
// levels lower than this will not be logged
// it can be overridden in each service specific config
logLevel: Level.INFO,
// project name, preferably 'name' from package.json
project: require('~/package.json').name,
// environment [production|stage|development]
environment: 'production',
},
// configs for slack
Slack: {
// override minimum log level (optional)
logLevel: Level.WARN,
// slack bot access token
slackToken: SLACK_BOT_TOKEN,
// slack channel to log messages to
slackChannel: SLACK_BOT_ALERT_CHANNEL,
},
// configs for log collecting service (fluentD)
Fluentd: {
// override minimum log level (optional)
logLevel: Level.INFO,
// log collector URL
collectorUrl: LOG_COLLECTOR_URL,
},
// configs for logging to console
Console: {
// override minimum log level (optional)
logLevel: Level.ERROR,
},
};
Then, there are two ways to continue, the easy way and the complete way:
This is the simple way and should cover ~90% of the use cases.
const logger = require('@17media/node-logger').createLogger(loggerConfig)('some:label');
logger.debug('track the variable value during development', { info });
logger.info('somehing worth logging for future reference', { additionalInfo });
logger.warn('somehing worth notice', { additionalInfo });
logger.error('somehing terrible happened', new Error());
logger.fatal('somehing disastrous happened', new Error(), { additionalInfo });
Provide configs to initiate the logger:
A log service will be used only when all corresponding configs are provided.
const { Logger } = require('@17media/node-logger');
const logger = new Logger(loggerConfig);
Use the logger like:
const { LogMessage } = require('@17media/node-logger');
logger.Log(
Level.WARN,
new LogMessage('something happened', { additionalInfo }),
'some:label:for:the:message'
);
In most situations you would want to pre-label all the messages logged in a file.
You can do it by:
const labelledLogger = logger.Label('path:to:this:file');
labelledLogger.Log(
Level.WARN,
new LogMessage('something happened', { additionalInfo })
);
You can extend LogMessage
and ErrorMessage
to create customized formatting for your context.
FAQs
Centralized logger for 17.Media Node.JS projects
We found that @17media/node-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.