Giter Site home page Giter Site logo

node-fastcgi-server's Introduction

fastcgi-server: A FastCGI server implementing an API similar to node's HTTP server.

fastcgi-server allows you to easily switch your HTTP server app into a FastCGI server app, since the implemented API is very similar to node's HTTP server.

Installing

npm install fastcgi-server

Using

Instead of requiring node's http module, require fastcgi-server:

var fastcgi = require('fastcgi-server');

Then, create your server normally:

fastcgi.createServer(function(req,res) {
  if ( req.url == '/' ) {
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.end('Hello sir!');
  }
  else {
    res.writeHead(404, {'Content-Type': 'text/html'});
    res.end('Meeh :-(');
  }
}).listen("/tmp/mysock.sock");

Point your webserver to /tmp/mysock.sock and... done!

Dependences

This module is based on current (0.10.x) node.js http module structure for trying to keep a similar API. If http module changes on the future, probably fastcgi-server will not be considering this changes.

node-fastcgi-server's People

Contributors

davidfoliveira avatar

Stargazers

William Storey avatar

Watchers

James Cloos avatar  avatar

Forkers

simonswain

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.