How to use meteor with iojs

Hi,

I really love meteor project, but what i do not like about it, is that i have no control, what node version it use.
I am not able to configure it to use iojs. Have somebody any suggesting? Maybe will it have some mechanism of configuration in the future? Or should do not worry about that, and just use it?

for a first test you could symlink it!

i think the node bin is in ~/.meteor/packages/meteor-tool/1.0.41/meteor-tool-os.linux.x86_64/dev_bundle/bin

never tested it

1 Like

Don’t worry about that, and just use it :slight_smile:

1 Like

Obviously you need an appropriate/compatible version of fibers at the very least.
There are also some version checks which you’ll quickly come across.

1 Like

For one of our servers, we had to use specific versions of node. If you compile the meteor project (meteor build), you’ll get a vanilla node server. You can then use “n” or something similar to manage which versions of node are installed / used.

Does that help?

1 Like

Hi guys, thank you, for your answers!