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

snooplogg

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snooplogg

Your mind on your logs and your logs on your mind

  • 1.12.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.2K
decreased by-13.81%
Maintainers
1
Weekly downloads
 
Created
Source

SnoopLogg

Greenkeeper badge NPM Version NPM Downloads Travis CI Build Test Coverage Code Climate Deps Dev Deps

Laid back debug logging.

Installation

npm install snooplogg

Features

  • Built-in and custom log levels
  • Ability to snoop on other snooplogg instances nested in dependencies
  • Pipe messages to one or more streams
  • Namespacing
  • Filter messages using the DEBUG (or SNOOPLOGG) environment variable
  • Automatic color selection with brightness range
  • Includes helper libraries for your convenience
  • Similar API to TJ's debug:
    • const debug = snooplogg('myapp').log;

snooplogg

Examples

import log from 'snooplogg';

log.trace('bow'); // writes to stdout/stderr if DEBUG matches + all pipes

log.info('wow')
   .warn('wow')
   .error('wow');
import snooplogg from 'snooplogg';

const log = snooplogg('myapp');
log.info('bow', 'wow', 'wow'); // writes to stdout/stderr if DEBUG=myapp + all pipes
import snooplogg from 'snooplogg';

const log = snooplogg.stdio('yippy yo');
log.info('bow', 'wow', 'wow'); // writes to stdout/stderr + all pipes

const log = snooplogg.enable('*')('yippy yay');
log.info('bow', 'wow', 'wow'); // writes to stdout/stderr + all pipes
import snooplogg from 'snooplogg';

const log = snooplogg
	.pipe(someWritableStream);

log.info('yippy', 'yo');

Listen for messages from all SnoopLogg instances, even from other dependencies.

import snooplogg, { snoop } from 'snooplogg';

snoop();

const log = snooplogg('bumpin');

log('one');
log
  .trace('two')
  .debug('three')
  .info('and to the four');

log.warn(`It's like this`);
log.error('and like that');
log.fatal('and like this');
import snooplogg, { type } from 'snooplogg';

type('jin', { color: 'cyan' });
type('juice', { color: 'yellow' });

const log = snooplogg();

log.jin('parents ain\'t home');
log.juice('too much drama', true);

API

snooplogg()

Creates a namespaced logger as well as defines the global namespaced logger.

snooplogg.log(msg)

Outputs a message using the standard console.log() format syntax.

snooplogg.config(options)

Allows you to set various instance specific options.

  • colors - (Array) An array of color names to choose from when auto-selecting a color, specifically for rendering the namespace.
  • minBrightness - (Number) The minimum brightness to auto-select a color. Value must be between 0 and 255 as well as less than or equal to the maxBrightness. Defaults to 80.
  • maxBrightness - (Number) The maximum brightness to auto-select a color. Value must be between 0 and 255 as well as greater than or equal to the minBrightness. Defaults to 210.
  • theme - (String) The name of the default theme to use. Defaults to standard.
  • maxBufferSize - (Number) The maximum number of log lines to buffer. Used to flush prior messages to new pipes.

Returns the original SnoopLogg instance.

Enabling Logging

By default, Snooplogg only prints messages if the the DEBUG or SNOOPLOGG environment variables are set.

# macOS and Linux
$ DEBUG=izzle node loggfather.js

# Windows PowerShell
> $Env:DEBUG="izzle" node loggfather.js

# Windows Command Prompt
> set DEBUG=izzle
> node loggfather.js

Note: You may also use the SNOOPLOGG environment variable to avoid conflicts with other libraries that use debug

You can also use any environment variable you want by simply calling enable() before logging.

import snooplogg from 'snooplogg';

// change the global environment variable name
snooplogg.enable(process.env.LOGGFATHER);

Global Defaults

SnoopLogg allows you to set defaults using environment variables that apply to all SnoopLogg instances.

  • SNOOPLOGG_COLOR_LIST - A comma-separated list of supported color names.
  • SNOOPLOGG_DEFAULT_THEME - Sets the theme.
  • SNOOPLOGG_MAX_BUFFER_SIZE - Sets the maxBufferSize.
  • SNOOPLOGG_MAX_BRIGHTNESS - Sets the maxBrightness.
  • SNOOPLOGG_MIN_BRIGHTNESS - Sets the minBrightness.

License

(The MIT License)

Copyright (c) 2017 Chris Barber

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 13 Jun 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

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