控制台说
您的开发人员工具/萤火虫控制台的简单聊天。 聊天的服务器是为node.js编写的。
服务器
首先,您需要使用以下命令安装console.say node.js 包:
npm install console.say
然后你需要像这样将 console.say 绑定到你的 http 服务器:
require ( 'console.say' ) . bind ( http ) ;
因此,您的服务器代码应如下所示:
var app = require ( 'express' ) ( ) ;
var http = require ( 'http' ) . Server ( app ) ;
// serving the client page
app . get ( '/' , function ( req , res ) {
res . sendfile ( 'index
1