Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change or upgrade the version of Node.js in Meteor

I am using Meteor in one of my project and as i checked node version used by meteor via going

/.meteor/local/build/.node_version.txt

. Its using v0.10.43 of node.js. I am using a module that can only be run on node.js version v4.0.0 or greater than that. So i am just wondoring to know that is there any way we can change the version of the node.js in Meteor application if yes than how we can change that. I have installed

node v5.8.0

locally in my ubuntu machine

Thanks

like image 799
Parveen yadav Avatar asked Oct 19 '22 08:10

Parveen yadav


1 Answers

Meteor 1.4 now supports Node 4.4.7! See release notes

To upgrade to Meteor 1.4:

  • Go to the root of your project's directory

  • meteor update

like image 54
Alex Nault Avatar answered Nov 01 '22 09:11

Alex Nault