
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@monterosa/logger
Advanced tools
The colorful tool for the NodeJS and browsers logs
$ npm install @monterosa/logger
import { LEVELS, setLevel, getLogger } from '@monterosa/logger';
setLevel(LEVELS.DEBUG); // LEVELS.INFO by default
const logger = getLogger('prefix');
logger.info("this is '%s' level", 'info'); // {"@name": "base", "@level":"info","@timestamp":"2018-05-15T09:09:11.781Z","@prefix":"prefix","@message":"this is 'info' level","@splat":["info"]}
logger.warn("this is %j", { level: 'info' }); // {"@name": "base", "@level":"warn","@timestamp":"2018-05-15T09:09:11.782Z","@prefix":"prefix","@message":"this is {\"level\":\"info\"}","@splat":[{"level":"info"}]}
logger.error("Fatal error %s", new Error('some error')); // {"@name": "base", "@level":"error","@timestamp":"2018-05-15T09:09:11.782Z","@prefix":"prefix","@message":"Fatal error Error: some error","@splat":[{}]}
logger.debug("userName=%s, userData=%j", 'z4o4z', data); // {"@name": "base", "@level":"error","@timestamp":"2018-05-15T09:09:11.782Z","@prefix":"prefix","@message":"userName=z4o4z, userData={...}","@splat":['z4o4z', {...}]}
LEVELSThe map of available log levels.
LEVELS.ERROR // error
LEVELS.WARN // warn
LEVELS.INFO // info
LEVELS.DEBUG // debug
LEVELS.VERBOSE // verbose
LEVELS.SILLY // silly
setNameThe method to set log name. Useful when you are shared code between processes and want to specify for which process the log was called. By default name is base. Can be called in runtime.
setName('some name');
setLevelThe method to set log level. Gets level as an argument. By default level is LEVELS.INFO. Can be called in runtime.
setLevel(LEVELS.DEBUG);
getLoggerThe method gets some prefix and returns logger instance with methods below:
logger.error
logger.warn
logger.info
logger.debug
logger.verbose
logger.silly
The prefix will be added to the logs as @prefix, for the NodeJS applications we are recommending to use __filename(global variable) as a prefix for easy debugging and finding something in the logs
setTransportThis method allows you set function which will be called before logging something in the console.
MIT
FAQs
The colorful tool for the NodeJS and browsers logs
We found that @monterosa/logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.