语法 类和对象 字符串 数组 日期和时间 数学 方法 元编程 jQuery Ajax 正则表达式 网络 设计模式 数据库 测试

发布于 2016-05-29 08:13:46 | 143 次阅读 | 评论: 0 | 来源: 网络整理

问题

你想使用网络上提供的服务。

解决方案

创建一个基本的 TCP 客户机。

在 Node.js 中

net = require 'net'

domain = 'localhost'
port = 9001

connection = net.createConnection port, domain

connection.on 'connect', () ->
    console.log "Opened connection to #{domain}:#{port}."

connection.on 'data', (data) ->
    console.log "Received: #{data}"
    connection.end()

使用示例

可访问 Basic Server

$ coffee basic-client.coffee
Opened connection to localhost:9001
Received: Hello, World!

讨论

最重要的工作发生在 connection.on 'data' 处理过程中,客户端接收到来自服务器的响应并最有可能安排对它的应答。

另请参阅 Basic ServerBi-Directional ClientBi-Directional Server

练习

  • 根据命令行参数或配置文件为选定的目标域和端口添加支持。
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务