UNPKG

cheers-mp-service

Version:

提供插件化的零配置小程序脚手架服务

58 lines (48 loc) 1.64 kB
const chalk = require("chalk"); const readline = require("readline"); const padStart = require("string.prototype.padstart"); const format = (label, msg) => { return msg .split("\n") .map((line, i) => { return i === 0 ? `${label} ${line}` : padStart(line, chalk.reset(label).length); }) .join("\n"); }; const chalkTag = (msg) => chalk.bgBlackBright.white.dim(` ${msg} `); exports.log = (msg = "", tag = null) => { tag ? console.log(format(chalkTag(tag), msg)) : console.log(msg); }; exports.info = (msg, tag = null) => { console.log(); console.log(format(chalk.bgBlue.black(" INFO ") + (tag ? chalkTag(tag) : ""), msg)); }; exports.start = (msg, tag = null) => { console.log(); console.log(format(chalk.bgBlue.black(" START ") + (tag ? chalkTag(tag) : ""), msg)); }; exports.done = (msg, tag = null) => { console.log(); console.log(format(chalk.bgGreen.black(" DONE ") + (tag ? chalkTag(tag) : ""), msg)); }; exports.warn = (msg, tag = null) => { console.log(); console.warn(format(chalk.bgYellow.black(" WARN ") + (tag ? chalkTag(tag) : ""), chalk.yellow("( ̄□ ̄) " + msg))); }; exports.error = (msg, tag = null) => { console.error(format(chalk.bgRed(" ERROR ") + (tag ? chalkTag(tag) : ""), chalk.red("(〒_〒) " + msg))); if (msg instanceof Error) { console.error(msg.stack); } }; exports.clearConsole = (title) => { if (process.stdout.isTTY) { const blank = "\n".repeat(process.stdout.rows); console.log(blank); readline.cursorTo(process.stdout, 0, 0); readline.clearScreenDown(process.stdout); if (title) { console.log(title); } } };