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

deepie

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

deepie

A simple logger with depth.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

deepie

A simple logger with depth.

Deepie makes it easier to add depth to your cli logging when you want more visual structure.

Example

Installation

$ npm install deepie --save

API

deepie(options)

Creates a new deepie instance.

Available options:

  • component: component's name
  • separator: string used to separate this component block with the previous one (defaults to the previous separator or a single space if none so far)
  • endSeparator: string used to separate the components block and the text to be logged
  • loggers: object with log functions
  • depth: maximum depth to be logged

Example:

var logger = deepie({
    component: 'loader',
    loggers: { error: chalk.red }
});

deepie.child(options)

Creates a new deepie child component overriding the parents options.

Example: deepie.child({ component: '[loader]' })

deepie.<logger>(string, [string...])

Logs to process.stdout the provided arguments (separated by spaces) using the previously configured logger.

Example:

var logger = deepie({
    component: '[loader]',
    loggers: { error: chalk.red }
});

logger.error('Error: failed to load!');
// [loader] Error: failed to load!

deepie.<logger>.stream()

Returns a transform stream that will stream the buffer after applying the logger function on it.

Example: fs.createReadStream('.editorconfig').pipe(deepie.stdout.stream()).pipe(process.stdout);

Examples

Go crazy with some colors:

var chalk  = require('chalk');
var deepie = require('deepie');

deepie = deepie({
    component: { logger: chalk.gray.bgBlack, name: 'pm' },
    loggers: {
        info:   chalk.cyan.bind(null, '›'),
        done:   chalk.green.bind(null, '✓'),
        debug:  chalk.yellow.bind(null, '»'),
    }
});

// Install module

deepie.info('installing module chalk...');

var installDeepie = deepie.child({
    component: { logger: chalk.magenta.bgBlack, name: 'install' },
    separator: { logger: chalk.gray.bgBlack, value: '›' },
});

installDeepie.debug('chalk: will install version 1.0.1...');

// Download module inside install module

var downloadDeepie = installDeepie.child({
    component: { logger: chalk.blue.bgBlack, name: 'download' },
    separator: { logger: chalk.magenta.bgBlack, value: '›' },
});

downloadDeepie.debug('chalk: downloading from repo...');
downloadDeepie.debug('chalk: download done.');

// back to install module

installDeepie.debug('chalk: installing package...');
deepie.done('chalk: installation done!');

Outputs

Visual result of example

You can limit the amount of depth to be logged:

var deepie = require('deepie');

deepie = deepie({
    // ...
    depth: 1
});

Outputs

Result of pm example

License

Released under the MIT License.

Keywords

FAQs

Package last updated on 25 Oct 2015

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