Skip to content

zybreak/node-fastcgi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FastCGI implemented in node.js

Hello World

var fastcgi = require('fastcgi');

fastcgi.createServer(function(req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(9000, '127.0.0.1');

About

A fastcgi implementation in node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published