Socket
Socket
Sign inDemoInstall

typed-logging

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    typed-logging

Tiny logger with slim api and ability of limitless extension


Version published
Maintainers
1
Install size
27.1 kB
Created

Readme

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

FAQs

Last updated on 12 Jul 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc