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

console-log-it

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

console-log-it

Console log colors, boxes, and more for the browser and terminal

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by550%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Coverage Status dependencies Status npm version

console-log-it

Console log colors, boxes, and more for the browser and terminal

Version: 1.1.0

Summary of Utils

Click on each function name for details and examples

functionDescription
logBoxLog out a message in a box
logDebugLog out args based on a condition
logErrorLog out an error message
logInfoLog out an info message
logStatusLog out a custom status message
logStyleLog out a styled message
logSuccessLog out a success message
logWarningLog out a warning message

Examples

Here are some examples of things you can do with console-log-it:

Boxes

Status Logs

Core & Custom Statuses

Status Logs

Change Your Line Style

Status Logs

Interfaces & Types

These are importable if you are using TypeScript. If you're not using TypeScript, you can simply use these as a reference to the shapes of the objects and the potential values to pass into the functions.

export type Color = 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white';
export type BackgroundColor = 'bgBlack' | 'bgRed' | 'bgGreen' | 'bgYellow' | 'bgBlue' | 'bgMagenta' | 'bgCyan' | 'bgWhite' | 'bgGray';
export type Style = 'blink' | 'bright' | 'dim' | 'hidden' | 'reverse' | 'reset' | 'underscore';

export type LogBoxConfig = {
  color: Color,
  indent?: number,
  padding?: number,
  bufferLines?: boolean,
  symbol?: string,
};

export type LogBoxLine = {
  color: Color,
  message: string,
};

export type StatusConfig = {
  indent?: number,
  tagMessage?: string,
};

export type CustomStatusConfig = {
  indent?: number,
  tagColor: Color,
  tagMessage: string,
};

Package Contents

Within the module you'll find the following directories and files:

package.json
CHANGELOG.md -- history of changes to the module
README.md -- this file
/lib
  └───/es5
      └───index.d.ts - 430 Bytes
      └───index.js - 1.48 KB
    └───/logBox
      └───index.d.ts - 1.33 KB
      └───index.js - 6.07 KB
    └───/logDebug
      └───index.d.ts - 519 Bytes
      └───index.js - 806 Bytes
    └───/logError
      └───index.d.ts - 558 Bytes
      └───index.js - 1.12 KB
    └───/logInfo
      └───index.d.ts - 560 Bytes
      └───index.js - 1.12 KB
    └───/logStatus
      └───index.d.ts - 760 Bytes
      └───index.js - 2.09 KB
    └───/logStyle
      └───index.d.ts - 926 Bytes
      └───index.js - 2.03 KB
    └───/logSuccess
      └───index.d.ts - 548 Bytes
      └───index.js - 1.12 KB
    └───/logWarning
      └───index.d.ts - 557 Bytes
      └───index.js - 1.13 KB
    └───/types
      └───index.d.ts - 800 Bytes
      └───index.js - 79 Bytes
    └───/_private
      └───index.d.ts - 561 Bytes
      └───index.js - 3.43 KB
  └───/es6
      └───index.d.ts - 430 Bytes
      └───index.js - 324 Bytes
    └───/logBox
      └───index.d.ts - 1.33 KB
      └───index.js - 5.84 KB
    └───/logDebug
      └───index.d.ts - 519 Bytes
      └───index.js - 676 Bytes
    └───/logError
      └───index.d.ts - 558 Bytes
      └───index.js - 1000 Bytes
    └───/logInfo
      └───index.d.ts - 560 Bytes
      └───index.js - 1002 Bytes
    └───/logStatus
      └───index.d.ts - 760 Bytes
      └───index.js - 1.95 KB
    └───/logStyle
      └───index.d.ts - 926 Bytes
      └───index.js - 1.91 KB
    └───/logSuccess
      └───index.d.ts - 548 Bytes
      └───index.js - 994 Bytes
    └───/logWarning
      └───index.d.ts - 557 Bytes
      └───index.js - 1004 Bytes
    └───/types
      └───index.d.ts - 800 Bytes
      └───index.js - 12 Bytes
    └───/_private
      └───index.d.ts - 561 Bytes
      └───index.js - 3.12 KB

License

MIT

Author

Michael Paravano

Dependencies

None

Keywords

FAQs

Package last updated on 20 Jan 2021

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