mark
mark

Reputation: 2063

Node 4.x in the IBM Node buildpack?

Node.js 4.0, 4.1 is out, but my application is still staging with Node 0.12.x. When will either versions of io.js or Node.js be availaible?

Upvotes: 1

Views: 184

Answers (2)

James Thomas
James Thomas

Reputation: 4339

I've created a buildpack that deploys the Node.js v4 on IBM Bluemix. https://github.com/jthomas/nodejs-v4-buildpack

You can use this when deploying your application along with the node engine parameter in your package.json to run on node v4.

Upvotes: 1

Ben Rondeau
Ben Rondeau

Reputation: 3053

expect a solution soon (couple of weeks, hopefully less) as some in depth testing is required to ensure compatibility with all aspects of the platform. IBM is a core member of the Node.js foundation and we are keen to keep this run time up to date.

You can always create your own cloud foundry build pack and deploy it in Bluemix should you require 4.0+ now. See the CF website for docs on how do that and the current Node.js build pace can be found here: https://github.com/cloudfoundry/nodejs-buildpack

Upvotes: 2

Related Questions