TCP Server可以绑定指定端口并被动地接收信息。
Chrome提供sockets.tcpServer接口使Chrome应用可以作为TCP服务器。要使用sockets.tcpServer接口需要在sockets域中声明tcpServer权限:
sockets.tcpServer
sockets
tcpServer
"sockets": { "tcpServer": { "listen": ":80" } }
上面的代码表示应用可以通过监听本地80端口接收TCP消息。