Tips

参考:

Node.jsで幸せになれる 10の習慣 – Qiita

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)

参考:

Node.js でターミナルの幅を取得する – Qiita

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]

Cannot disable warnings when node is launched via a shell script. · Issue #10802 · nodejs/node – GitHub

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

Hide compile warnings during test runs – Stack Overflow

記事をシェアする:
タグ:

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

Protected by reCAPTCHA