Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 wikipedia entry, but cant quite get the whole idea of where to use it and how it will be useful. "Event-driven I-O"? "V8 Javascript engine"? In some context though, I see that using "server-side" javascript as a little overkill..I take for instance this piece of code in the wikipedia entry of node.js:

var http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World\n');
}).listen(8000);

console.log('Server running at http://127.0.0.1:8000/');

I have been thinking, is there really a significant purpose in running a server that particularly serves javascript files that are executed in the front-end part of the application?

I also forked the node.js repo in github to learn more about how it works, and it turns out that some of its modules are written in C++. So it is not a javascript after all then?

Can somebody give me a clear explanation about all this? Sorry if the question is not clear or something, I am just a beginner. Will appreciate any input/suggestions. thanks

like image 600
Benny Tjia Avatar asked Jul 09 '11 03:07

Benny Tjia


People also ask

How node js is used in Web development?

Node (or more formally Node. js) is an open-source, cross-platform runtime environment that allows developers to create all kinds of server-side tools and applications in JavaScript. The runtime is intended for use outside of a browser context (i.e. running directly on a computer or server OS).

Is node JS part of Web development?

Node. js for web development is a revolutionary technology that offers unique features. Developers regard it as one of the most efficient cross-platforms JavaScript environments that can help you build robust and effective REST APIs, mobile applications, and web applications.

Is node js a backend or frontend?

A common misconception among developers is that Node. js is a backend framework and is only used for building servers. This isn't true: Node. js can be used both on the frontend and the backend.

Which are the areas where it is suitable to use node JS?

Because Node. js is single-threaded, we use it primarily for non-blocking, event-driven servers. We can also use Node. js for traditional websites and back-end API services, as it was designed with real-time, push-based architectures in mind.


3 Answers

The node.js server is, in simple terms, a replacement for something like the Apache web server - but it is largely written in JavaScript which runs on the server (executed by the V8 engine) rather than on the client side. It can be extended with 'native code' modules (written in e.g. C++) wrapped in a JavaScript interface to add functionality, but AFAIK most node.js modules are pure JavaScript.

"Event driven I/O" is just a term that describes the normal asynchronous callback mechanisms you're used to in JavaScript. In node.js you supply callbacks for all sorts of things, and your function is called when the relevant event occurs.

Depending on how many modules you add, a node.js server is relatively lightweight compared to something like Apache, and in some ways a lot simpler.

The two main advantages to node.js I see are:

  1. It allows you to write both the server-side and client-side parts of a web application in the same language. In some cases you can use the same code on both sides.
  2. It makes server-side coding accessible to all those web developers out there that know JavaScript without having to learn a more common server-side language like PHP or Java.

Here's an article I just came across that might also shed some light: What is Node.js?

like image 83
sje397 Avatar answered Sep 23 '22 03:09

sje397


While I can't add much to what @sje said, I will repeat that blog link he shared, as that is the best resource that I've found to explain nodejs quickly:

http://radar.oreilly.com/2011/07/what-is-node.html

Also note that it's from OReilly, who most of us know as being the publisher of the best references for programmers on the market in general ;)

I have been thinking, is there really a significant purpose in running a server that particularly serves javascript files that are executed in the front-end part of the application?

This is totally wrong. This is the most wrong assumption about node you could make. Node runs the javascript on the server much as ruby or php or asp.net code is run. The fact that the browser can also run javascript has no bearing on node.

Granted, you can share modules between the server and the client (for instance, validation routines for form data) but by and large the codebases are different as they are intended for different things.

I also forked the node.js repo in github to learn more about how it works, and it turns out that some of its modules are written in C++. So it is not a javascript after all then?

Yes, node is a server that interprets javascript using the V8 engine. It has to be written in something. I'll give you a comparison: Microsoft .NET code is mostly written in .NET on top of .NET, but the main code that actually does the work, the runtime (the CLR as most people refer to it) that manages the managed-code, that code is written in C. The same thing with node. Yes, most of it (as you saw) is written in javascript, but the core libraries that run everything else are written in C.

Can somebody give me a clear explanation about all this? Sorry if the question is not clear or something, I am just a beginner. Will appreciate any input/suggestions. thanks

I hope this helped clear it up in part. There's a lot to cover, and without going into evented-io (which involves understanding processes and threads and io access and a lot of other stuff) this is pretty much the basic high-level answer to this question. I invite you to the nodejs room on the chat server here if you like, for more random discussions that are fluid. https://chat.stackoverflow.com/rooms/642/node-js

As to the first question you asked:

Where does it fit in?

The same place ruby and php and perl and python and asp.net do. On the server, generating code that the client receives.

like image 24
jcolebrand Avatar answered Sep 20 '22 03:09

jcolebrand


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".

like image 26
chjj Avatar answered Sep 21 '22 03:09

chjj