New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

qiao-log

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qiao-log

nodejs log tools

latest
Source
npmnpm
Version
6.0.0
Version published
Weekly downloads
194
31.08%
Maintainers
1
Weekly downloads
 
Created
Source

qiao-log

npm version npm downloads

nodejs 下日志能力

logger

const Logger = require('qiao-log');
const logger = Logger(options);

options

log4js的配置

const options = {
  appenders: {
    out: { type: 'stdout' },
  },
  categories: {
    default: { appenders: ['out'], level: 'debug' },
  },
};

使用 log4js 写日志

logger.debug;
logger.info;
logger.warn;
logger.error;

FAQs

Package last updated on 16 Mar 2026

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