You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

blf-debug-appender

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blf-debug-appender

A DebugAppender for `base-log-factory`.

2.0.0
latest
Source
npmnpm
Version published
Weekly downloads
6.2K
-12.58%
Maintainers
1
Weekly downloads
 
Created
Source

blf-debug-appender

npm package

NPM version NPM Downloads License TypeScript

🚀 A DebugAppender for base-log-factory.

📅 Documentation

For detailed usage instructions and API references, please visit the official documentation:

👉 View Full Documentation

🚀 Quick Start

1. Installation

npm install base-log-factory blf-debug-appender

2. Basic Usage

// factory.ts
import { LogFactory } from 'base-log-factory';
import { DebugAppender } from 'blf-debug-appender';

export default new LogFactory({
  appenders: [new DebugAppender()]
});

// main.ts
import logFactory from './factory';

const logger = logFactory.getLogger('app');
logger.info('Server started successfully');

📝 Contribution Guide

  • Development Setup

    npm install
    
  • Testing

    npm test # Run unit tests
    
  • Before Submitting PRs

    • Ensure ESLint is configured (VSCode plugin recommended)
    • Add test cases for new features
    • Update documentation

📄 License

MIT License

Keywords

log

FAQs

Package last updated on 11 May 2025

Did you know?

Socket

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.

Install

Related posts