
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
@raincatcher/logger
Advanced tools
This module creates logging facade for node.js based applications that is used by all RainCatcher modules. Users can use their own loggers by wrapping them into provided interface.
By default all RainCatcher framework modules will not log any information to console. Framework users can enable logger by using one of the provided implementations or custom implementation that will extend our interface.
Supported implementations:
BunyanLogger
Implements Bunyan
Used for server side loggingClientLogger
Implements LogLevel
Used for client (web and mobile) logging // Setup logger in your application
import {BunyanLogger, getLogger} from '@raincatcher/logger';
const log = new BunyanLogger({name: 'index'});;
setLogger(log);
// Use logger in other modules
getLogger().info('This log will render with BunyanLogger');
See ./example/index.ts for more advanced usages
FAQs
Logger facade used by RainCatcher modules
We found that @raincatcher/logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.