Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript Virtual Machine

I'm wondering if there is any javascript virtual machine you've used before or you have any ideas about !

I'm not talking about javascript engine for browsers like V8 for chrome, I'm looking to execute javascript code on a linux server machine.

Thanks

like image 879
VisaMasterCard Avatar asked Jan 31 '11 15:01

VisaMasterCard


People also ask

Is Nodejs a virtual machine?

In fact, there is a default module, which gives us great capabilities to play around with. Here is the ultimate introduction to the Node. js Virtual Machine (VM) module.

Is V8 a virtual machine?

V8 is Google's JavaScript engine, written in C++. It compiles and executes JavaScript code inside of a VM (Virtual Machine).

Which engine is used for JavaScript?

V8 from Google is the most used JavaScript engine. Google Chrome and the many other Chromium-based browsers use it, as do applications built with CEF, Electron, or any other framework that embeds Chromium. Other uses include the Node. js and Deno runtime systems.

Why JavaScript engine is needed?

JavaScript is not understandable by computer but the only browser understands JavaScript. So, we need a program to convert our JavaScript program into computer-understandable language. A JavaScript engine is a computer program that executes JavaScript code and converts it into computer understandable language.


1 Answers

You might be interested in Node.JS

like image 122
Saul Avatar answered Sep 29 '22 07:09

Saul