javascript - What does it mean by chrome v8 engine embeded nodejs? -


i new mean, when learning node.js nodejs embeded chrome v8 engine, nodejs work on specific browser. can brief nodejs embeded on chrome v8 engine not on other browser engines

node.js javascript execution environment stands itself. has nothing browser. can run javascript programs node.js.

to parse , execute javascript, node.js has v8 javascript engine (the same engine used chrome) embedded in it. allows run , execute javascript. not make browser in way.

in addition v8 javascript execution engine, node.js comes large set of built-in libraries doing sorts of things socket communication file i/o, allowing 1 write sorts of applications in node.js, including server processes.

does nodejs work on specific browser

if build server process in node.js, can use browser talk server, either via regular http page requests, form posts, ajax calls or websocket connections.

what nodejs embeded on chrome v8 engine not on other browser engines

nodejs needs 1 javascript execution engine. v8 open source , engine that's developers of nodejs decided use. javascript engine used has nothing browser or interoperability browser. node.js stands on it's own. browser can talk using standards defined http or websocket.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -