node fastcgi:使用node.js创建FastCGI应用程序 源码
节点fastcgi 该模块是节点标准HTTP模块(仅服务器)的直接替代。 使用FastCGI无需更改为http服务器编写的代码即可正常工作。 它可用于构建FastCGI应用程序或将现有的节点应用程序转换为FastCGI。 该实现完全符合。 例 var fcgi = require ( 'node-fastcgi' ) ; fcgi . createServer ( function ( req , res ) { if ( req . method === 'GET' ) { res . writeHead ( 200 , { 'Content-Type' : 'text/pl
下载地址
用户评论