Node.js 和管道 ConnectionListener

发布于 2024-11-14 18:11:44 字数 338 浏览 1 评论 0原文

Node.js 文档 提供了创建回显服务器的示例:

var net = require('net');
var server = net.createServer(function (c) {
  c.write('hello\r\n');
  c.pipe(c);
});
server.listen(8124, 'localhost');

什么这条线的用途是什么?

  c.pipe(c);

The Node.js documentation provides an example for creating an echo server:

var net = require('net');
var server = net.createServer(function (c) {
  c.write('hello\r\n');
  c.pipe(c);
});
server.listen(8124, 'localhost');

What purpose does this line serve?

  c.pipe(c);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手心的海 2024-11-21 18:11:44

c1.pipe(c2);是一个简短版本

c1.on('data', function(buf) { c2.write(buf); });

(加上“drain”事件处理、暂停/恢复等 - 请参阅文档

所以c.pipe(c) 表示“回显数据发送到 c”。

c1.pipe(c2); is a short version for

c1.on('data', function(buf) { c2.write(buf); });

(plus 'drain' event handling, pause/resume etc - see docs)

So c.pipe(c) means 'echo data sent to c'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文