NODEJS create node.js web based - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

how to create node.js web based ?


 183

NODEJS


0

// place into main.js

var http = require("http");
http.createServer(function (request, response) {
// Send the HTTP header
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// Send the response body as "Hello World"
response.end('Hello Node.js\n');
}).listen(8081);
// Console will print the message
console.log('Server running at http://127.0.0.1:8081/');

// then type "node main.js" in node.js command prompt
// you will see the following result : Server running at http://127.0.0.1:8081/
// then open http://127.0.0.1:8081/ in any browser







By        
The power of the user (%)
62%



The most helpful NODEJS solutions

get user ipget user ipNODEJS

Click to see more ...

  7.6K     1.7K

how to get client netmask using node.js ?how to get client netmask using node.js ?NODEJS

Click to see more ...

  4.2K     557

How to get client machine name and computer name with node.js?How to get client machine name and computer name with node.js?NODEJS

Click to see more ...

  12.1K     440

how to get client local ip address using node.js ?how to get client local ip address using node.js ?NODEJS

Click to see more ...

  2.3K     311

How to get client ip address using node.jsHow to get client ip address using node.jsNODEJS

Click to see more ...

  2.1K     271

How to combine node.js and jquery ?How to combine node.js and jquery ?NODEJS

Click to see more ...

  1.5K     247

how to detect tablet, iPad, iPhone, Android and Blackberry using nodejs ?how to detect tablet, iPad, iPhone, Android and Blackberry using nodejs ?NODEJS

Click to see more ...

  1.8K     161

get client region using node.js ?get client region using node.js ?NODEJS

Click to see more ...

  1.4K     128

get real user ip address using node.js?get real user ip address using node.js?NODEJS

Click to see more ...

  1K     124

get server ip address from hostname nodejsget server ip address from hostname nodejsNODEJS

Click to see more ...

  2.9K     122

Welcome aboard!
We are happy you are here and
wish you good net-raft!