
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Node.js logging facade to decouple frameworks, libraries and application code from specific logging implementations.
Node.js logging facade to decouple frameworks, libraries and application code from specific logging implementations.
Installation | Usage | API | Changelog
get-logger is a facade for Node.js logging implementations like bunyan, pino, debug and others with the following goal:
Framework and library authors, as well as application developers, must be capable of adding logging to their code without relying on specific logging implementation.
This means that get-logger is only a small facade over existing logging implementations. It defines a very small API surface area and a few contracts that logging implementations should support. All advanced features such as setting an active log level, defining output streams and the output format is left to the chosen logging implementation.
By default, get-logger will log to the console.
yarn add get-logger
# -or-
npm install --save get-logger
get-logger is most helpful because your Node.js modules don't have to rely on specific logging implementations. Because of this, logging implementations can easily be changed. Furthermore, editor and IDEs can auto-generate these logger require statements.
const logger = require('get-logger')('<nameOfYourModule>');
Loggers support the following log levels and format strings:
logger.debug('Power level over %d!', 8000);
logger.info('One does not simply build a %s tool', 'chat');
logger.warn({foo: 'think-of-something-better-than-foo'});
logger.error('Sorry folks!', {error: 'ENOTFOUND'})
At last, to configure get-logger to use a specific logging implementation, set the logger provider using setLoggerProvider(name: string): Logger.
require('get-logger').setLoggerProvider(name => {
return {
debug,
info,
warn,
error
};
});
FAQs
Node.js logging facade to decouple frameworks, libraries and application code from specific logging implementations.
We found that get-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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.