【发布时间】:2016-07-15 17:01:27
【问题描述】:
https://github.com/brianc/node-postgres/blob/master/lib/connection.js
var net = require('net');
var Connection = function(config) {
...
config = config || {};
this.stream = config.stream || new net.Stream();
...
}
文档中根本没有提到 net.Stream 。 https://nodejs.org/api/net.html
我错过了什么吗?
【问题讨论】:
标签: node.js postgresql