Tips
参考:
Node.js の問題点、デメリットと解決方法まとめ – Qiita
Node.js 開発者が一度は読むべき Stack Overflow 初級編 – Qiita
Top 10 Mistakes Node.js Developers Make | airpair
The Top 10 Most Common Mistakes That Node.js Developers Make | Toptal
75 Best Node.js Command Line Apps & Utilities | FireBear
ターミナルで画面の幅/高さを取得する
console.log(
`cols: ${process.stdout.columns} ` +
`rows: ${process.stdout.rows}`
)
Code language: JavaScript (javascript)
参考:
Getting the Terminal Size in Node | Toby Ho
TTY | Node.js Documentation [Official]
Get width of terminal in Node.js – Stack Overflow
コンソールへの出力を抑制する
--no-warnings
オプション- 環境変数で
NODE_NO_WARNINGS=1
を指定する - 出力関数を置き換える →
console.log = function() {}
参考:
--no-wargings | Node.js Documentation [Official]
NODE_NO_WARNINGS=1 | Node.js Documentation [Official]
Node warnings bubble up and in bin scripts can’t be disabled · Issue #32876 · nodejs/node – GitHub
How to quickly and conveniently disable all console.log statements in my code? – Stack Overflow
How to disable warnings when node is launched via a (global) shell script – Stack Overflow