Category: I/O File
Windows Script Host (WSH) is powerful. Every windows since Win95 come with default installation of WSH and two languages are supported, JScript (Microsoft’s implementation of Javascript) and VBScript. Creating …
Previous tutorials on node.js could be found at , , . Reading files is easy in node.js via the package fs. The following shows the straightforward procedure in event-driven model to read a text file …
February 9, 2013
beginner, client-server, http, I/O File, implementation, internet, javascript, network, nodejs, programming languages, sockets, tcp/ip
Previous tutorials on node.js could be found here: We have learned to create a http server by using require(‘http’) and http.createServer(…).listen(port). The node.js is based on Javascript and event-driven model, which means that the events happen later …
Ajax stands for AsynchronousJavascript and Xml. It is not a new programming language or tool. Instead, it is a new way of using existing standards to exchange data between client and …
Previous Tutorial on nodejs can be found at . The nodejs executable allows you to set up a webserver quickly and easily via Javascript, for example, the following illustrates …