像 NodeJS 写的 TCP 服务可以监听在某个 sock 文件(Domain Socket) 上,它的 HTTP 服务也能这么干。虽然作为 HTTP 服务连接某个 sock 文件的意义不大,所以这里只算是一个纯粹的尝试。
TCP 服务是这样写
123456 var net = require('net');net.createServer(function (socket) {socket.on('data', function (data) {socket.write('received: ' + data);});}).listen('/tmp/node_tcp.sock');
连接上面那个 '/tmp/node_tcp.sock'
✗ telnet /tmp/node_tcp.sock
Trying /tmp/node_tcp.sock...
Connected to (null).
Escape character is '^]'.
Hello World!
received: Hello World!
准确说来本文应该是 NodeJS 的 TCP 和 HTTP 监听 Domain Socket 文件。
对于 TCP 监听 Domain Socket 还是很常用的,比如有时对本机的数据库或缓存的访问就会这么做,像用 '/tmp/mysql.sock' 来访问本机 MySQL 服务,这样就不需要启动 TCP 端口暴露出来,安全性有所提高,性能上也有一定的提升。
现在来看看 NodeJS 的 HTTP 监听在 Domain Socket 上, 从经典的例子来改造下
1 2 3 4 5 6 |
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen('/tmp/node_http.sock'); console.log('Server running at /tmp/node_http.sock'); |
尚不知如何在浏览器中访问以上的 HTTP 服务,所以用 telnet 测试
✗ telnet /tmp/node_http.sock
Trying /tmp/node_http.sock...
Connected to (null).
Escape character is '^]'.
GET / HTTP/1.1HTTP/1.1 200 OK
Content-Type: text/plain
Date: Mon, 26 Jan 2015 04:21:09 GMT
Connection: keep-alive
Transfer-Encoding: chunkedc
Hello World0
能正确处理对 '/tmp/node_http.sock' 上的 HTTP 请求。
用 NodeJS HTTP Client 来访问
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
var http = require('http'); var options = { socketPath: '/tmp/node_http.sock', method: 'GET', path: '/' }; var req = http.request(options, function(res){ console.log('STATUS: ' + res.statusCode); console.log('HEADERS: ' + JSON.stringify(res.headers)); res.on('data', function (chunk){ console.log(chunk.toString()); }); }); req.end(); |
执行上面的代码,假如文件名是 http_client.js,
✗ node http_client.js
STATUS: 200
HEADERS: {"content-type":"text/plain","date":"Mon, 26 Jan 2015 04:25:49 GMT","connection":"close","transfer-encoding":"chunked"}
Hello World
本文只作记录,现在还想不到让 HTTP 服务监听在 Domain Socket 上的实际用意,况且浏览器也无法对它进行访问。
请问: 如何在NODEJS中使用JQUERY 去更新页面元素?
我现在有三个文件,index.html、APP.JS 、TCPCLIENT.JS。
index.html 引用app.js, app.js 引用tcpclient.js 现在我想在tcpclient.js中socket收到数据时,直接使用JQUERY更新index.html中元素。可是一直失败。不知道您遇到过这样的问题吗,或者可以提供一个思路吗?谢谢!
数据能接收到的话,检查 jQuery 端什么问题,先作简单的更新操作。