CoffeeScript 服務(wù)器

2022-06-29 17:13 更新

服務(wù)器

問(wèn)題

你想在網(wǎng)絡(luò)上提供一個(gè)服務(wù)器。

解決方案

創(chuàng)建一個(gè)基本的TCP服務(wù)器。

在 Node.js 中

net = require 'net'

domain = 'localhost'
port = 9001

server = net.createServer (socket) ->
    console.log "Received connection from #{socket.remoteAddress}"
    socket.write "Hello, World!\n"
    socket.end()

console.log "Listening to #{domain}:#{port}"
server.listen port, domain

使用示例

可訪問(wèn)Basic Client

$ coffee basic-server.coffee
Listening to localhost:9001
Received connection from 127.0.0.1
Received connection from 127.0.0.1
[...]

討論

函數(shù)將為每個(gè)客戶端新連接的新插口傳遞給@net.createServer@ ?;镜姆?wù)器與訪客只進(jìn)行簡(jiǎn)單地交互,但是復(fù)雜的服務(wù)器會(huì)將插口連上一個(gè)專(zhuān)用的處理程序,然后返回等待下一個(gè)用戶的任務(wù)。

另請(qǐng)參閱Basic Client,Bi-Directional ServerBi-Directional Client

練習(xí)

  • 為選定的目標(biāo)域和基于命令行參數(shù)或配置文件的端口添加支持。
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)