0.1.0 • Published 12 years ago

ncgi v0.1.0

Weekly downloads
2
License
-
Repository
github
Last release
12 years ago

node-cgi

Node module to call node scripts as a CGI script

USAGE

#!/usr/bin/node var ncgi = require('ncgi'); var params = ncgi.getParameters(); ncgi.print("Hello world\n"); ncgi.print("parameters="+require('util').inspect(params)+"\n");

FEATURES

  • A node script can be called from Apache by giving it the .cgi extension and making it executable
  • Supports GET as well as POST (application/x-www-form-urlencoded content-type only) parameters
  • Can set a custom mimetype with ncgi.getParameters() (default text/html)
  • Can include a script relative to the current script with eval(ncgi.read('path/to/relativ/script.js'))

LICENSE

node-cgi is released under GPL license