Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@voliware/logger

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voliware/logger

A tiny Javascript logger with levels and several options. Supports Node and all modern Browsers

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by33.33%
Maintainers
1
Weekly downloads
 
Created
Source

logger

Probably the simplest logger out there.

How to Use it

let logger = new Logger("App", {
   level: Logger.level.debug,
   timestamp: {
       state: true,
       format: Logger.timestamp.utc
   }
});

// prints to the console
// [Mon, 01 Jul 2019 23:41:04 GMT] [DBG] [App] Initializing
logger.debug("Initializing"); 

Node

Install with node package manager

npm install @voliware/logger

Include in a file

const Logger = require('@voliware/logger');

Browser

Include in a file

<script src="https://cdn.jsdelivr.net/npm/@voliware/logger/dist/logger.min.js"></script>

Keywords

FAQs

Package last updated on 02 Jul 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc