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

outputjs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

outputjs

A simplistic logger and output manager.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

outputjs

npm version Dependencies GitHub license Greenkeeper badge Build Status codecov

:pencil: A simplistic node.js logger that can be configured to the max.

Example output

  • No configuration necessary!
  • Name & Color support!
  • Automatic padding!
  • Info, Success, Error, and warn functions!
  • A debug function that can be toggled!
  • Automatic name & color selection!

Usage

You can choose to either pass options as an argument...

const logger = require('outputjs');
const chalk = require('chalk');
const options = {
    name: 'server',       //Name of the logger. Will be displayed in [] tags. DEFAULT: Name of caller file
    color: chalk.bgGreen, //Color used for highlighting the name. DEFAULT: random unique color
    padding: 10,          //Padding with x width for the name. DEFAULT: 10
    prefix: '-->',        //Prefix used after the name. DEFAULT: "->"
    debug: true,          //Enables output with .debug() DEFAULT: false
    debugPrefix: 'D: ',   //Prefix used for debugging. DEFAULT: "DEBUG:"
    filePath: 'output.js' //Outputs everything to a file. Doesn't support colors. DEFAULT: false
}
const server = new logger(options);

...or simple go with no configuration at all.

const logger = require('outputjs');
const server = new logger();

The following functions are available to you:

server.debug("A debug message! Without debug set to true, it won't display. Highlighted in bright yellow.");
server.info("A info message! Highlighted in white.");
server.success("A success message! Highlighted in green.");
server.warn("A warn message! Highlighted in yellow.");
server.error("A error message! Highlighted in red.");

Keywords

FAQs

Package last updated on 14 Aug 2017

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