From someone with few experience in JS, what do you recommend for learning Node.js?
I read a lot in the forum about event driven, non-blocking , async, callbacks, etc but I don't know what's that!
Where can I learn the basics in order to understand all that terms and in the future, node.js?
Aside from being one of the most popular programming languages on the planet, JavaScript is powerful and easy to learn (though sometimes difficult to master). And Node is, among other things, JavaScript on the server.
js uses asynchronous programming: All APIs of Node. js library are asynchronous (i.e., non-blocking), so a Node. js-based server does not wait for the API to return data. The server calls the API, and in the event that no data is returned, the server moves to the next API the Events module of Node.
In the end, yes, you need to know the language you're working with if you want to build anything. You don't need to be all-knowing to get started, though. If you try to understand what you're doing, you'll most certainly learn stuff along the way.
It takes around 3 months to fully learn Node JS and be able to build a functional full-stack application. If you already know some other programming, you can get the basics down within a few week's time.
The concepts you mention (event-driven, non-blocking, async, callbacks) aren't specific to JavaScript and understanding them in a more general context is valuable. They all revolve around gracefully handling resources over which we have no control.
Imagine waiting for data from a TCP connection, waiting for the OS to delete a file, or waiting for a user to click a button. If you programmed this in a step-by-step fashion (step-by-step is synchronous), you'd cruise along - "do step 1", "do step 2", "do step 3" - until you hit the step "wait for something to happen". At that point, your program would stop and refuse to budge until it received the data, received delete confirmation, or received the button click. In other words, the call blocks the program from proceeding. This is pretty inefficient considering there are likely other TCP connections, file operations, and UI actions that need our attention and don't depend on the item we're waiting for.
In many cases, it would be better to indicate we're interested in a resource and receive notifications outside of step-by-step instructions when the resource changes. From your list of concepts:
We can see these concepts illustrated by renaming a file with node.js:
var fs = require('fs'); // args (current file name, new file name, callback function) fs.rename('/tmp/hello', '/tmp/world', function (err) { // this occurs when the rename is complete if (err) throw err; console.log('rename complete'); }); console.log('step after rename');
The third argument may look strange. It's an unnamed (anonymous) function that will be called when the rename is complete.
Note that since fs.rename is asynchronous, it's impossible to tell if we'll see the 'rename complete' or 'step after rename' message first. That's the downside to event-driven/asynchronous programming - if we have a complex set of interdependent tasks, we need to be extremely careful to insure dependent tasks complete before the tasks that depend on them. The fact that the order of async call completion can change can lead to very subtle bugs.
See also:
Edit per donald's request:
The best way to understand node.js is to download, build, install, and use it. You'll need:
Most tutorials focus on node.js's ability to quickly build an Http server:
Keep in mind that node.js fills a very particular niche - it's designed to build network programs. It may not be the right tool for other types of programs.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With