Tag: node.js
The Steem Blockchain RPC nodes have a few plugins that can be configured enabled/disabled. We can use the following Javascript function (NodeJS) to check if those plugins are enabled …
The CloudFlare Worker is a Serverless Service (similar to Amazon Lambda, Google Function) that we can use to deploy functions in the edge network. The serverless is the future …
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 …
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 …