CoffeeScript 服務器

2022-06-29 17:13 更新

服務器

問題

你想在網(wǎng)絡上提供一個服務器。

解決方案

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

在 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

使用示例

可訪問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ù)將為每個客戶端新連接的新插口傳遞給@net.createServer@ ?;镜姆掌髋c訪客只進行簡單地交互,但是復雜的服務器會將插口連上一個專用的處理程序,然后返回等待下一個用戶的任務。

另請參閱Basic Client,Bi-Directional ServerBi-Directional Client。

練習

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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號