where does node.js fit within the web development context?

前端 未结 3 1541
逝去的感伤
逝去的感伤 2021-02-09 06:39

I know that node.js is said to be \"event-driven I/O\" server-side javascript hosted on V8 Javascript engine. I visited the node.js website, and then read the

3条回答
  •  忘了有多久
    2021-02-09 06:55

    I haven't seen anyone give a simple answer to this yet.

    Node.js is:

    • the v8 javascript engine
    • an event loop
    • some c++ bindings, among other things, that give v8 IO capabilities (both network and file IO)

    It's important to note, Node doesn't necessarily have to be used for web development either. It's purpose is, "evented IO".

提交回复
热议问题