Socket
Socket
Sign inDemoInstall

@fdebijl/clog

Package Overview
Dependencies
0
Maintainers
1
Versions
178
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @fdebijl/clog

My personal stdout logger 📝


Version published
Weekly downloads
219
increased by167.07%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Clog Logging utility

Simple logging utility for reuse in my personal projects. View on NPM.

Installation:

npm install -S @fdebijl/clog

Usage:

TS:

import { Clog, LOGLEVEL } from '@fdebijl/clog';

const clog = new Clog(LOGLEVEL.WARN);
clog.log('This is an error', LOGLEVEL.ERROR);

JS:

const { Clog, LOGLEVEL } = require('@fdebijl/clog');

const clog = new Clog(LOGLEVEL.WARN);
clog.log('This is an error', LOGLEVEL.ERROR);

FAQs

Last updated on 01 Apr 2024

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