Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
415 views
in Technique[技术] by (71.8m points)

node.js - How can I know the version of node being used by my meteor app?

I have installed meteor under linux, and I don't really know which version of node.js meteor is using.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Answer for MacOS and Meteor > v1.1

The node binary resides in the dev_bundle of the meteor-tool:

~/.meteor/packages/meteor-tool/1.1.3/mt-os.osx.x86_64/dev_bundle/bin

$ cd ~/.meteor/packages/meteor-tool/1.1.3/mt-os.osx.x86_64/dev_bundle/bin
$ ./node -v
v0.10.36

Note: The meteor-tool version does not match the version of Meteor, but in 99% of the cases you can assume that the latest version is used for your current Meteor.

At least in Meteor >= 1.5 you can also directly access the NodeJS bundled with Meteor and find out the version:

meteor node -v

Credits to Mickael for pointing that out.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...