LoginSignup
6
3

More than 5 years have passed since last update.

実行時に Node.js のバージョンを確認する方法

Posted at

Node.js 実行時に自分のバージョンが知りたいときがあったりします。
その場合は以下でバージョンを知ることができます。

> process.versions.node
'0.10.33'

process.versions はそれ以外のいろいろなバージョンがわかります。

> process.versions
{ http_parser: '1.0',
  node: '0.10.33',
  v8: '3.14.5.9',
  ares: '1.9.0-DEV',
  uv: '0.10.29',
  zlib: '1.2.3',
  modules: '11',
  openssl: '1.0.1j' }
> 

v8 のバージョンも確認できます。

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3