Quick-Start with Node.js on Linux Mint
Hi! The Tutorial shows you Step-by-Step How to Quick Start with Node.js on Linux Mint Systems.
Node.js is an Amazing New Javascript Stuff that is at the Same Time either a Web Server and a Web Development Framework.
Node.js is Well Known for his Performances and Scaling Attitudes derived from a Single Thread Non-Blocking Architecture “First, come, first served”.
The Contents and Details are Expressly Essentials to Give Focus Only to the Essentials Instructions and Commands and Make the Guide Easier to Read and Digest ;)
To the Quick-Start with Node.js on Linux Mint Bottom you Find Link to Guide with Extended Documentation for Node.js Javascript Server/Framework.
-
How to Install the Latest Node.js on Linux Mint.
-
Open Terminal Window
(Press “Enter” to Execute Commands)Cmd and Search “term”
In case first see: Terminal QuickStart Guide.
-
Install hotnode Utility
sudo npm -g install hotnode
The Tool will Provide to Auto-Reloading the Server when New Changes are Saved.
-
Editing the Hello-World Node Server
nano server.js
Inserts something Like:
var http = require('http'); var path = require('path'); var pages = [ {route: '', output: 'Woohoo!'}, {route: 'about', output: 'A simple routing with Node example'}, {route: 'another page', output: function() {return 'Here's '+this.route;}}, ]; http.createServer(function (request, response) { var lookup = path.basename(decodeURI(request.url)); pages.forEach(function(page) {/nif (page.route === lookup) { response.writeHead(200, {'Content-Type': 'text/html'}); response.end(typeof page.output === 'function' ? page.output() : page.output); } });/nif (!response.finished) { response.writeHead(404); response.end('Page Not Found!'); } }).listen(8080);
-
Start the Server/App
node server.js
Next you can Display the Hello-World on:
http://127.0.0.1:8080/
-
Node.js Manual & Documentation.
Now you are able to Getting-Started with the Node.js Development, to Look for Further Docs and Resource meet the Online Node.js Developers Community.