How to create a simple server page application on node
Here are the steps to create server using node
We need to create a http variable
1. var http = require("http");
2. create server with request and respose
3.Send request and listen on a port
4.get log on that port .
Here is an example
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 World\n');
}).listen(8082);
// Console will print the message
console.log('Server running at http://127.0.0.1:8082/');
Type http://localhost:8082/
browser out : Hello World

No comments:
Add your comment