Skip to content

lizc2003/node-fastcgi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published