Node.Js on windows - How to clear console

前端 未结 19 1425
迷失自我
迷失自我 2020-12-02 08:51

Being totally new into node.js environment and philosophy i would like answers to few questions. I had downloaded the node.js for windows installer and also node package man

相关标签:
19条回答
  • 2020-12-02 09:34

    To solve problems with strict mode:

    'use strict';
    process.stdout.write('\x1B[2J');
    
    0 讨论(0)
提交回复
热议问题