What local node-version is recommended for AWS Lambda and Serverless

Viewed 2540

Starting with AWS-Lambda and the Serverless Framework i am confused about node versions:

The AWS help site says that (on 21-March-2016)

AWS Lambda supports the following runtime versions:

Node.js: v0.10.36

So i did install Node.js v0.10.36 on my local machine. Installing the latest (v 0.4.2) serverless framework via

npm install serverless -g

it gives the following warning:

npm WARN engine serverless@0.4.2: wanted: {"node":">=4.0"} (current: {"node":"0.10.36","npm":"1.4.28"})

I thought having the same version locally as on AWS might help having a consistent development environment... Am i wrong? What Node.js version should i run locally to get the most out of serverless?

2 Answers
Related