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.
Table of contents
IntroductionModulesGlobal ScopeInstallationInstalling New ModulesThe Hello World AppHTTP ServerHandling URL ParametersReading and Writing FilesAccessing MySQL DatabasesConclusion3 Comments
Sort: