Jean-Charles Sisk

Results 50 comments of Jean-Charles Sisk

So the complexity here is that enrouten has no concept of config. Thinking this over, I think the simplest way to implement this would be to add another internal shortstop...

That's interesting. We already provide a facade there.

@magicdawn I believe you may be confused by our implementation. Routes register through `express-enrouten` are _not_ mounted on a sub app. They are, however, mounted on a `Router` instance. The...

> ``` js > var router = enrouten({ > directory: 'controllers', > index: 'controllers/home' > }); > ``` express-enrouten returns a middleware-ish object. It's middleware-ish because you register it in...

> I think it would really useful to be able to add an additional config option to add middleware that get set before routes are set I like the thought....

Hey Bryan, You're not seeing the errors because of the unfortunate [5xx middleware](https://github.com/krakenjs/kraken-js/blob/4377c719b4d1e0b05e272e1c9f3ed0d985d00afa/middleware/500.js) that is wired up automatically by the generator. If you remove it from your config, you'll see...

Hey @scttdavs, Sorry for the delay—I've been out of town for a couple of days. I'm catching up on a few things but I just wanted to acknowledge your PR....

Hmm. I'm not so sure we should be taking on this responsibility—I think it should land on the app developer. We'll be suppressing the error case of a documented behavior....

Unfortunately, this is a tough thing to accomplish given we're operating within the confines of an application we don't own. That said, we do [add an `x-registry` header](https://github.com/krakenjs/kappa/blob/dd9b26ecfa02fda98e39b7a5362d7999721fd13e/lib/delegate/proxy.js#L167) to every...