Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 584 Bytes

File metadata and controls

16 lines (12 loc) · 584 Bytes

nodeJS

Node JS in open source server framework. Cross platform, Javascript runtime environment for executing javascript code in server side.

Here is how PHP or ASP handles a file request: Sends the task to the computer's file system. Waits while the file system opens and reads the file. Returns the content to the client. Ready to handle the next request.

Here is how Node.js handles a file request: Sends the task to the computer's file system. Ready to handle the next request. When the file system has opened and read the file, the server returns the content to the client.