W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
你想通過網(wǎng)絡(luò)提供持續(xù)的服務(wù),與客戶保持持續(xù)的聯(lián)系。
創(chuàng)建一個雙向TCP服務(wù)器。
net = require 'net'
domain = 'localhost'
port = 9001
server = net.createServer (socket) ->
console.log "New connection from #{socket.remoteAddress}"
socket.on 'data', (data) ->
console.log "#{socket.remoteAddress} sent: #{data}"
others = server.connections - 1
socket.write "You have #{others} #{others == 1 and "peer" or "peers"} on this server"
console.log "Listening to #{domain}:#{port}"
server.listen port, domain
$ coffee bi-directional-server.coffee
Listening to localhost:9001
New connection from 127.0.0.1
127.0.0.1 sent: Ping
127.0.0.1 sent: Ping
127.0.0.1 sent: Ping
[...]
大部分工作在@socket.on 'data'@中 ,處理所有的輸入端。真正的服務(wù)器可能會將數(shù)據(jù)傳給另一個函數(shù)處理并生成任何響應(yīng)以便源程序處理。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: