Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is Node.js named Node.js? [closed]

Tags:

node.js

I'm just curious why Node.js was named that. I searched their site and their FAQ and there was nothing that helped me understand why it was named Node.js.

like image 604
Shane Wealti Avatar asked Apr 11 '11 13:04

Shane Wealti


People also ask

Is node js going away?

The short answer is “NO.” The long answer is, “NO, it's not dead, and it probably will never die.” Node. js is just as relevant to coding in 2021 and beyond, even if the hype around it has stabilized slightly.

Is node and node js the same?

nodejs is a modern javascript-oriented server framework typically used to provide various services and realtime applications, while node is an older framework for transmitting data packets over amateur radio.

How do you say node js?

It's pronounced "Node" "J" "S". Groups "nodejs" group.

Who is node js owned by?

The open source project Node. js was invented by Joyent software engineer Ryan Dahl three years ago next month. It essentially allows JavaScript to be used outside of a browser.


1 Answers

The official name is actually Node. Originally it was designed for use as a web application, but the author realized it could be used for more general purposes and renamed it to node.

Here is a quote from the author that may help explain the name:

Node is a single-threaded, single-process system which enforces shared-nothing design with OS process boundaries. It has rather good libraries for networking. I believe this to be a basis for designing very large distributed programs. The “nodes” need to be organized: given a communication protocol, told how to connect to each other. In the next couple months we are working on libraries for Node that allow these networks.

like image 142
Justin Ethier Avatar answered Oct 11 '22 18:10

Justin Ethier