🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

typed-logging

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typed-logging

Tiny logger with slim api and ability of limitless extension

0.2.0
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Minimal leightweight logging for TypeScript and JavaScript.

Log levels trace, debug, info, warn, error, silent.

Features

  • Displays the correct line numbers in the browser.

  • Supports different log levels, if the level is set to warn, only log.warn and log.error are executed. Other messages like log.info stay silent.

  • Log methods gracefully fall back to simpler console logging methods if they are not supported in the environment. E.g. calls to log.debug() go to console.debug() if possible, otherwise to console.log().

  • Plugins may be used to transform the logging output, e.g. to prefix all messages with a timestamp.

Installation

Install node.js and then run npm install --save typed-logging or yarn add typed-logging to add typed-logging as a dependency.

Usage

And then use it

// when using TypeScript or ES6 modules
import log rom 'typed-logging';

// when using CommonJS
const { log } = require('typed-logging');

log.info('info')

In the browser, you can also directly use it as an UMD package from unpkg:

<script src="https://unpkg.com/typed-logging/dist/typed-logging.umd.js"></script>

This exposes the class window.Logger and the default instance window.log.

Keywords

log

FAQs

Package last updated on 12 Jul 2018

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