Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8902

Node.jsでOSを検出する方法

$
0
0

Node.js組み込みの関数が使えるのでとても簡単です。

process.platformでOS検出の結果がわかります。

// 例constisWin=process.platform==="win32"constisMacOS=process.platform==="darwin"

全ての可能な値

  • aix
  • darwin
  • freebsd
  • linux
  • openbsd
  • sunos
  • win32

注意

  • macOSはdarwinとして検出されます
  • Windowsは32-bitでも64-bitでもwin32になります

Viewing all articles
Browse latest Browse all 8902

Trending Articles