Socket
Socket
Sign inDemoInstall

sklog

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sklog

A super lightweight console logging library to help make things simple. This is very lightweight, it's meant only to make loggin easy - nothing more and nothing less.


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

sklog is intended to be a lightweight library for console logging. This was born out of laziness - it's very basic and simple to use. I didn't need 95% of the functionality in Winston's logger and I don't care about putting logs in a DB, if you need more functionality then check out Winston's great logger - it's full of features and other cool stuff.

Using SKLOG

From your project directory:

    $ npm install sklog

Within your application:

var log = require("sklog");

log("no loglevel");
log(0,"This is Information");
log(1,"This is a Warning");
log(2,"This is an Error");
log(3,"Non-existant log level");
log(3,{This:"Is an object",And:"I haas keys"});

Outputs:

   [ INFO]: This is Information 
   [ WARN]: This is a Warning 
   [ERROR]: This is an Error 
   [ INFO]: Non-existant log level
   [ INFO]:
        This    :       Is an object
        And     :       I haas keys

Is this All?

Long answer: yes, what more do you need?

Keywords

FAQs

Package last updated on 28 Sep 2014

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