如何在Node.js中增加微调框的大小?

时间:2019-04-28 06:54:29

标签: node.js

在我的CLI应用程序中,我定义了此自定义微调器

const throbber = ora({
    text: 'Tinkering with all the Zoinkys',
    spinner: {
        frames: ['', '', '', ''],
        interval: 300, // Optional
    },
}).start();

然后我在主函数中调用它

function main() {
    setTimeout(() => {
        throbber.stop();
    }, 1000 * 10);
}

我的问题是,由于框架有点小并且在运行时我无法分辨它们,是否可以增加框架的大小?

0 个答案:

没有答案