Search code examples
javascriptv8

Get older versions of v8 engine installed on my machine. so I can run and test my js files through it


I want Google D8 engine version 3.14 installed in my machine so that I can test and run my JS files through it.


Solution

  • V8 by itself won't do you much good. You need some way to feed your JS into it.

    For example, you could use Node.js. Their release history page shows that v8 3.14 was associated with Node.js 0.9.11 to 0.10.48. These are really old versions of Node.js but are available via Node Version Manager which allows you to install multiple versions of Node.js side-by-side.