2016-07-15 4 views
0

https://github.com/brianc/node-postgres/blob/master/lib/connection.jsクラスnet.Streamは、Node.jsのドキュメントで説明されていないが、マニュアルのnet.Streamの全く言及はありません

var net = require('net'); 
var Connection = function(config) { 
    ... 
    config = config || {}; 
    this.stream = config.stream || new net.Stream(); 
    ... 
} 

ノード-postgresのために使用されています。 https://nodejs.org/api/net.html

何か不足していますか?

答えて

関連する問題