[nodejs] [ANN] middler - an embeddable middleware runner

2013-01-10 Thread carlos8f
Hi, I'd like to announce the availability of middler, a project I started last summer. https://github.com/carlos8f/node-middler Basically, you might think of it as a "mini express" which allows you to easily attach a middleware stack to an http server, with a chainable routing interface and p

Re: [nodejs] [ANN] middler - an embeddable middleware runner

2013-01-13 Thread Martin Cooper
On Thu, Jan 10, 2013 at 4:27 PM, carlos8f wrote: > Hi, > > I'd like to announce the availability of middler, a project I started last > summer. > > https://github.com/carlos8f/node-middler > > Basically, you might think of it as a "mini express" which allows you to > easily attach a middleware st

Re: [nodejs] [ANN] middler - an embeddable middleware runner

2013-01-16 Thread carlos8f
Connect is great, it can be nested as you say, but it doesn't have a router. Express has a router, but gives away the embeddability. Middler aims at giving the best of both worlds, in a slim package. Basically, what is different about middler is it unites what were previously two separate devel

Re: [nodejs] [ANN] middler - an embeddable middleware runner

2013-01-17 Thread Martin Cooper
On Wed, Jan 16, 2013 at 8:49 PM, carlos8f wrote: > Connect is great, it can be nested as you say, but it doesn't have a > router. > This is a little ironic since connect 1.x did have a router built in, but it was pulled out so that connect would have fewer baked-in dependencies, and be less "opi