public
Description: A port of Rack for the JavaScript JSGI web server interface
Homepage: http://jackjs.org
Clone URL: git://github.com/tlrobinson/jack.git
jack /
name age message
file .gitignore Sun Mar 29 15:52:09 -0700 2009 gitignore [Tom Robinson]
file README.md Thu Sep 10 17:58:31 -0700 2009 merged with Jack [nevilleburnell]
directory bin/ Thu Oct 01 01:27:40 -0700 2009 Change HTTP_VERSION to SERVER_PROTOCOL (conflic... [Tom Robinson]
directory docs/ Sun Sep 13 19:09:47 -0700 2009 added showstatus.js [nevilleburnell]
directory examples/ Fri Oct 09 04:04:51 -0700 2009 Added an AsyncResponse object and example. [Tom Robinson]
file jackconfig.js Wed Sep 02 00:03:56 -0700 2009 JSGI spec change: response is Object {status:,h... [tlrobinson]
directory jars/ Sun Jun 07 01:53:17 -0700 2009 Remove simple.jar symlink and update package.js... [tlrobinson]
directory lib/ Thu Nov 19 16:10:57 -0800 2009 response ctor doesn't add text/html header when... [Nathan]
file package.json Sat Aug 22 22:15:34 -0700 2009 Updated packag.json [Tom Robinson]
directory support/ Wed Sep 02 00:03:56 -0700 2009 JSGI spec change: response is Object {status:,h... [tlrobinson]
directory tests/ Wed Oct 14 18:23:50 -0700 2009 if not form encoded, do not try to parse the bo... [Tom Robinson]
README.md

JSGI & Jack

JSGI is a web server interface specification for JavaScript, inspired by Ruby's Rack (http://rack.rubyforge.org/) and Python's WSGI (http://www.wsgi.org/). It provides a common API for connecting JavaScript frameworks and applications to webservers.

Jack is a collection of JSGI compatible handlers (connect web servers to JavaScript web application/frameworks), middleware (intercept and manipulate requests to add functionality), and other utilities (to help build middleware, frameworks, and applications).

Homepage:

Source & Download:

Mailing list:

IRC:

JSGI Specification

View the JSGI specification.

Example JSGI Application

function(env) {
    return {
        status : 200,
        headers : {"Content-Type":"text/plain"},
        body : ["Hello world!"]
    };
}

JSGI vs. Rack

JSGI applications are simply functions, rather than objects that respond to the "call" method. The body must have a forEach method which yields objects which have a toByteString method, as opposed to Strings.

JSGI vs. WSGI

WSGI uses a start_response function to set the HTTP status code and headers, rather than returning them in an array. JSGI is similar to WSGI 2.0: http://www.wsgi.org/wsgi/WSGI_2.0.

Contributors

Acknowledgments

This software was influenced by Rack, written by Christian Neukirchen.

http://rack.rubyforge.org/

License

Copyright (c) 2009 Thomas Robinson <280north.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.