Node.js uses a module architecture to simplify the creation of complex applications. Every function in node.js is asynchronous. This means that everything that would normally block the thread is instead executed in the background. One script handles all communication with the clients. This considerably reduces the number of resources used by the application.

11m read timeFrom code.tutsplus.com
Post cover image
Table of contents
IntroductionModulesGlobal ScopeInstallationInstalling New ModulesThe Hello World AppHTTP ServerHandling URL ParametersReading and Writing FilesAccessing MySQL DatabasesConclusion
3 Comments

Sort: