Paul Sturm
Paul Sturm

Reputation: 2138

Determine node.js version from Meteor

I know I can determine the version of Meteor with Meteor.release but is there a simple way to determine the node version Meteor is running on top of from a running Meteor app?

Upvotes: 1

Views: 140

Answers (1)

Hubert OG
Hubert OG

Reputation: 19544

process.version

Meteor is built on top of Node.js and hence you've got access to the full Node API.

Upvotes: 3

Related Questions