GithubHelp home page GithubHelp logo

tlrobinson / jack Goto Github PK

View Code? Open in Web Editor NEW

This project forked from 280north/jack

184.0 6.0 8.0 1.14 MB

[UNMAINTAINED] A port of Rack for the JavaScript JSGI web server interface

Shell 0.74% JavaScript 99.26%

jack's Introduction

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.

jack's People

Contributors

anttih avatar dangoor avatar deanlandolt avatar gmosx avatar gozala avatar hns avatar janv avatar kriskowal avatar kriszyp avatar nevilleburnell avatar paulbaumgart avatar rhino-security avatar tschaub avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

jack's Issues

"jackup" not picking up packages in the local packages directory

To reproduce on a debian box:

Create a new narwhal package, f.ex: tusk init my-project

Create a local packages directory inside my-project and create a new
package inside that packages directory, f.ex:

mkdir packages && cd packages && tusk init my-local-package

Add lib/foo-module.js file inside my-local-package/lib directory.

Now add a test.js file inside my-project/lib directory and require
foo-module defined in my-local-package.

If you invoke test.js using narwhal then everything works fine. If
instead you invoke test.js using jackup, the system is unable to load
the foo-module.

Jack: ERROR: ReferenceError: "file" is not defined.

I'm getting this error in Jack's file.js module. To reproduce:

  1. Start the example site. jackup jack/examples/example.js
  2. Create an "example.txt" file at jack/examples/example.txt
  3. Navigate the browser to http://localhost:8080/example.txt

Browser shows blank page, log in the terminal shows ERROR: ReferenceError: "file" is not defined.

Seems to be related to File = require("file") on line 3 of jack/lib/jack/file.js

parseMultipart should use binary.js

It should provide a way to access the uploaded data as a ByteString/Array in addition to the tempfile method.

That would be extremely useful in AppEngine deployments that do not provide write access to the file system and thus the tempfile solution in inapropriate

Simple Server should be able to be stopped via a signal

Shouldn't have to kill the process to stop it. It should be able to be stopped by a signal on unix or by a command sent to a port other than the web listening port on windows. I'm not so sure that's how it should be done on windows, any ideas about that?

MethodOverride

MethodOverride calls request.POST() that deserializes multipart data to tempfiles (even if not required). It should manually parse the _method param or use GET data?

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.