UNPKG

coa-echo

Version:

Lightweight console color logger for node.js

15 lines (14 loc) 375 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const __1 = require(".."); function run() { __1.echo.log('log default'); __1.echo.warn('warn yellow'); __1.echo.info('info magenta'); __1.echo.error('error red'); __1.echo.grey('grey'); __1.echo.blue('blue'); __1.echo.green('green'); __1.echo.cyan('cyan'); } run();