Category: nodejs
Unikernels are a newer way of deploying your software to servers. Some liken it to things like heroku or serverless or other “no ops” type of provisioning because they …
I have shown a simple NodeJS example that calls the SteemIt Wechat API to get the daily ranking table. The average scores for Reputation, Steem Power, Steem, Effective SP, …
August 6, 2013
COM/OLE, implementation, interpreter / compiler, javascript, nodejs, programming languages, recursive, string, technical, tools / utilities, tricks, windows
Node.JS (http://nodejs.org/) has been a great Javascript-server side tool). Previous posts on this topic can be found . However, the NodeJS does not inherently support the Win32 COM/OLE techniques …
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 …