
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@panda/logger
Advanced tools
Panda Logger is a simplified instance of Winston Logger that is primarily used for the Panda framework, but that can be implemented in virtually any project.
npm i @panda/logger
const PandaLogger = require('@panda/logger')
// get the base logger
const logger = PandaLogger.getLogger()
// initialize a new logger
const logger = PandaLogger.getLogger('Foo')
// initialize a new logger with custom level and format
const logger = Logger.getLogger('Bar', { level: 'debug', format: 'json' })
LOG_LEVEL=debug LOG_FORMAT=json node index
const PandaLogger = require('@panda/logger')
const logger = PandaLogger.getLogger('Foo')
logger.fatal(msg)
logger.error(msg)
logger.warn(msg)
logger.info(msg)
logger.http(msg)
logger.verbose(msg)
logger.debug(msg)
logger.silly(msg)
logger.success(msg)
logger.fail(msg)
timestamp label level message outputlogger.success(msg) (level: info)logger.fail(msg) (level: info)logger.testLevels() - tests output of all levels against current levellogger.levels - returns a list of all levelslogger.level - returns the current level for that loggerlogger.format - returns the current format for that loggernpm test
# run linter
npm run lint
# run linter and fix any fixable issues
npm run lint:fix
FAQs
A simple logging interface for NodeJS applications
We found that @panda/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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.