0.0.1 • Published 12 years ago

now-middleware v0.0.1

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

NowJS Middleware Layer - Connect style

To enable:

To run when a new user connects:

Parameters are:

  • the beforeware function you want called when each new nowjs session is established, you will receive the newly created nowjs user object (the "this" in remotely called functions) passed as client and the next() function which you must call to pass control to the next beforeware layer

To run when a user makes a remote method call on the server (e.g. to retrieve an HTTP session):

Parameters are:

  • regex matched route (omit completely if you want to match all routes, what's a route? simply the name and namespace of the function you are calling)
  • the middleware function you want called, this function will receive all arguments the client sent, can manipulate/add to them, and then call next() to pass to the next layer in the middleware