How to install nodejs on Xampp localhost

After searching (source), I have found, that it’s easier to install Node.js directly (so, no need of XAMP/WAMP):

  1. Install http://nodejs.org/download/

  2. Create a test file (example) C:\myFolder\test.js and put this code in that file:

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');
  1. Open CMD (COMMAND PROMPT) and execute:

    node C:\myFolder\test.js

  2. Open this address in your browser: http://127.0.0.1:1337/

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)