Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 365 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 365 Bytes

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]