语言:
中文
English
执行node程序时,控制台中输出console行号
npm install output-line --save
/*
┌────────────┬────────────┬────────────┐
│ property │ default │ type │
├────────────┼────────────┼────────────┤
│ methods │ Console │ Array │
│ prefix │ '🐞' │ String │
│ isRelative │ false │ Boolean │
└────────────┴────────────┴────────────┘
*/
// 使用默认参数
// require('output-line')()
// 自定义参数
const options = {
methods: ['debug', 'log', 'warn', 'error'],
prefix: '🐸',
isRelative: true
}
require('output-line')(options)
console.log('%s %d', 'age', 18)
console.log({ f: 'foo', b: 'bar' })