感觉node开发还是挺依赖各种包的,毕竟脚本开发,简洁和效率为上,整理下会用到的包
Lodash 是一个一致性、模块化、高性能的 JavaScript 实用工具库。
lodash官方文档
对于工具库我的想法是,不要依赖三方库,能自己用原生js实现最好。记一下备用
chalk npm文档
chalk
按我的理解是在node环境下,可以在terminal
输出多种颜色样式的字符串。增强可读性
const chalk = require("chalk"); const path = require("path"); const boxen = require("boxen"); const log=console.log console.log(chalk.blue.bgRed.bold('Hello world!')); // Pass in multiple arguments log(chalk.blue('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz')); // Nest styles log(chalk.red(`'Hello'${chalk.underline.bgBlue('world')}'!'`)); // Nest styles of the same type even (color, underline, background) log(chalk.green( 'I am a green line ' + chalk.blue.underline.bold('with a blue substring') + ' that becomes green again!' )); log(chalk.keyword('orange')('橙色字'))
上述代码跑起来的效果就是:
boxen npm文档
简单来说,就是能让terminal
的输出展示盒装的样式,让终端提示更明显
const boxen = require('boxen'); console.log(boxen('unicorn', {padding: 1})); /* ┌─────────────┐ │ │ │ unicorn │ │ │ └─────────────┘ */ console.log(boxen('unicorn', {padding: 1, margin: 1, borderStyle: 'double'})); /* ╔═════════════╗ ║ ║ ║ unicorn ║ ║ ║ ╚═════════════╝ */
consola npm文档
简单来说,还是个能让terminal
的输出信息的样式,让终端提示更明显。
吐槽下,为什么这些样式不能整个统一的包,不过好在每个npm包用法都简单。
用法如下:由于接受的传参是字符串,所以可以和chalk
一起用
consola.success('Built!') consola.info('Reporter: Some info') consola.warn('warn') consola.success(`${chalk.bold.blue('Built!')}`)
效果如下: