1.0.7 • Published 9 years ago
log-with-colors v1.0.7
log-with-colors
Log with colors is a simple syntax to colored console log, based on chalk
log.green('This will log to console in green')
Install
$ npm i -S log-with-colorsUsage
const log = require('log-with-colors')log.success('Hello World') //logs to the console in greenAPI
| Function | Type | Info |
|---|---|---|
| log() | default | Prints with process.stdout |
| log.error() | error | Prints with process.stderr |
| log.success() | color | Equals to log.green() |
| log.warn() | color | Equals to log.yellow() |
| log.info() | color | Equals to log.cyan() |
| Function | Type |
|---|---|
| log.gray() | color |
| log.blue() | color |
| log.cyan() | color |
| log.green() | color |
| log.yellow() | color |
| log.red() | color |
| log.magenta() | color |
License
MIT © Alexandre Lopes