Learning Node.JS Programming April 2014 - --Better late than never, but I should have begun this process a few months ago.-- * http://jothut.com/cgi-bin/junco.pl/tag/nodejs * http://jothut.com/cgi-bin/junco.pl/b/17499/NodeJS-for-newbies * http://nodejs.org * https://www.npmjs.org * http://nodejs.org/docs/v0.4.11/api/http.html#http.request * http://package.json.nodejitsu.com * http://inessential.com/2013/12/09/getting_started_with_node_js_for_cocoa_ * http://inessential.com/2013/12/09/getting_started_with_web_services_using_ * http://expressjs.com/4x/api.html * http://howtonode.org/hello-node h2. Hello World at Command Prompt Open up a text file and enter: @// Call the console.log function.@ @console.log("Hello World");@ Save file as test1.js and then at the command prompt, execute: @node test1.js@ Obviously, that produces: @Hello World@ #nodejs - #programming - #javascript - #howto