lizc2003 / node-fastcgi

FastCGI implemented in node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-fastcgi

FastCGI implemented in node.js

Hello World

var fastcgi = require('fastcgi');

fastcgi.createServer(function(req, res) {
    res.writeHead(200);
    res.write('Hello World\n');
    res.end();
}).listen(9000, '127.0.0.1');

Notes

fastcgi_parser.js come from[https://github.com/billywhizz/node-fastcgi-parser]

About

FastCGI implemented in node.js


Languages

Language:JavaScript 100.0%