Node.js:通过unix socket发送GET请求

时间:2016-12-16 04:36:48

标签: javascript node.js sockets go unix-socket

我是 node.js 的新手。我正在尝试使用unix socket设置客户端服务器连接,其中我的客户端请求将在 node.js 中,并且在后台运行的服务器将在其中运行。

客户端代码:

    var request = require('request');

    request('http://unix:/tmp/static0.sock:/volumes/list', function (error, response, body) {
        if (!error && response.statusCode == 200) {
            console.log(body)
        } else {
            console.log("In else part of the receiver" + response.statusCode + body)
        }
    }


})

当我尝试与写入的服务器进行通信时,它会显示HTTP error: 400 Bad Request: malformed Host header'

同样适用于:

curl -X GET --unix-socket /tmp/static0.sock http://:/volumes/list

不确定我的请求有什么问题。我们需要发送标题吗?我期待JSON的回应。

2 个答案:

答案 0 :(得分:11)

要在不使用请求模块的情况下完成此操作,请尝试以下操作:

const http = require('http');

const options = {
  socketPath: '/tmp/static0.sock',
  path: '/volumes/list',
};

const callback = res => {
  console.log(`STATUS: ${res.statusCode}`);
  res.setEncoding('utf8');
  res.on('data', data => console.log(data));
  res.on('error', data => console.error(data));
};

const clientRequest = http.request(options, callback);
clientRequest.end();

答案 1 :(得分:-2)

考虑以下示例:

客户端代码: 您也可以在某些代码中进行套接字连接:



<script src="https://cdn.socket.io/socket.io-1.4.5.js"></script>
<script>
  socket = io.connect('http://www.example.com' , {'force new connection':true});
  socket.on('event', function(){
    // code to execute
  });
</script>
&#13;
&#13;
&#13;

nodejs中的服务器端代码: 对于这个安装npm,那么 1)npm init 2)npm install --save express 3)npm insatll --save socket

&#13;
&#13;
var express = require('express');
var app = express();
var http = require('http');
var server = http.createServer();
var io = require('socket.io').listen(server);
var socket = null;

io.sockets.on('connection', function(soc) {
  socket = soc;
  console.log('socket connected');
});


app.get('/test', function(request, response) {
  var message = "Hello world";
  socket.emit('event', message);
  response.writeHead(200);
  reponse.write(message);
  reponse.end();
});

var server = app.listen(8080, '0.0.0.0');
&#13;
&#13;
&#13;

您可以通过浏览器点击