JSPM

@log4js-node/log4js-api

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 98406
  • Score
    100M100P100Q178528F
  • License Apache-2.0

For libraries that want to include log4js for logging, but don't want to introduce version conflicts for users that also use log4js. Delegates to whatever log4js version can be found, but does not introduce a specific log4js version.

Package Exports

  • @log4js-node/log4js-api

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@log4js-node/log4js-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Log4js - API

This library is intended for use by other library makers that want to include support for log4js in their libraries without requiring a dependency on a specific version of log4js. It is intended that this library should remain static, and will work with any version of log4js. If no version of log4js can be found, then the library simply does not output anything.

Installation

npm install @log4js-node/log4js-api

Usage

Use as you would log4js - only without configuring it, it would be your library's clients that are responsible for configuring log4js (if they want to). The API is limited to only getLogger on the log4js object, and returns a Logger object that only supports the basic log functions (trace, debug, info, warn, error, fatal). If log4js is found in the require path, then the real log4js Logger object is returned.

const log4js = require('@log4js-node/log4js-api');
const logger = log4js.getLogger('my-library');

logger.info("Library starting up");