Vlad Miller
Vlad Miller

Reputation: 2279

Why does AWS Lambda uses older node version?

It seems like aws lambda uses older node version 0.10.36

Is there any reason to not to use newer versions of node or maybe even latest iojs compiler?

Thanks

Upvotes: 3

Views: 391

Answers (1)

James
James

Reputation: 11931

A simple answer is that 0.10.36 is the version you get from the EL6 EPEL repository with yum install nodejs. You have to do extra work to get a newer version.

Upvotes: 1

Related Questions