खोज…


http सर्वर

HTTP सर्वर का एक मूल उदाहरण।

निम्नलिखित कोड http_server.js फ़ाइल में लिखें:

var http = require('http');

var httpPort = 80;

http.createServer(handler).listen(httpPort, start_callback);

function handler(req, res) {
    
    var clientIP = req.connection.remoteAddress;
    var connectUsing = req.connection.encrypted ? 'SSL' : 'HTTP';
    console.log('Request received: '+ connectUsing + ' ' + req.method + ' ' + req.url);
    console.log('Client IP: ' + clientIP);

    res.writeHead(200, "OK", {'Content-Type': 'text/plain'});
    res.write("OK");
    res.end();        
    return;
}

function start_callback(){
    console.log('Start HTTP on port ' + httpPort)
}

उसके बाद अपने http_server.js स्थान से यह कमांड चलाएँ:

node http_server.js

आपको यह परिणाम देखना चाहिए:

> Start HTTP on port 80

अब आपको अपने सर्वर का परीक्षण करने की आवश्यकता है, आपको अपना इंटरनेट ब्राउज़र खोलने और इस यूआरएल पर नेविगेट करने की आवश्यकता है:

http://127.0.0.1:80

यदि आपकी मशीन लिनक्स सर्वर चला रही है तो आप इसे इस तरह से देख सकते हैं:

curl 127.0.0.1:80

आपको निम्नलिखित परिणाम देखना चाहिए:

ok

आपके कंसोल में, जो ऐप चला रहा है, आपको यह परिणाम दिखाई देंगे:

> Request received: HTTP GET /
> Client IP: ::ffff:127.0.0.1

http क्लाइंट

http क्लाइंट के लिए एक मूल उदाहरण:

http_client.js फ़ाइल में follwing कोड लिखें:

var http = require('http');

var options = {
  hostname: '127.0.0.1',
  port: 80,
  path: '/',
  method: 'GET'
};

var req = http.request(options, function(res) {
    console.log('STATUS: ' + res.statusCode);
    console.log('HEADERS: ' + JSON.stringify(res.headers));
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log('Response: ' + chunk);
    });
    res.on('end', function (chunk) {
        console.log('Response ENDED');
    });
});

req.on('error', function(e) {
    console.log('problem with request: ' + e.message);
});


req.end();

उसके बाद अपने http_client.js स्थान से यह कमांड चलाएँ:

node http_client.js

आपको यह परिणाम देखना चाहिए:

> STATUS: 200
> HEADERS: {"content-type":"text/plain","date":"Thu, 21 Jul 2016 11:27:17 GMT","connection":"close","transfer-encoding":"chunked"}
> Response: OK
> Response ENDED

नोट: यह उदाहरण http सर्वर उदाहरण पर निर्भर करता है।



Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow