Greg Reimer
Greg Reimer
Thanks for the response. I haven't looked much into falcor-path-utils, I'll have to check it out. Will it be attached as a method ala `pathSet.all()`, or is the idea for...
I ran into this need also: https://github.com/Netflix/falcor-router/issues/175 I closed the issue, but referencing it here for posterity.
What about making it so when you request a path to a reference, it could behave conditionally? 1. If another route matches the reference, follow it and resolve the new...
This is more complicated than I thought because of timing issues.
Node's http module translates incoming header names to lowercase. https://github.com/joyent/node/issues/1954 So we're stuck with this behavior under node v0.10 but apparently, coming versions will provide a rawHeaders property which should...
@sholladay - As long as `headerReceived.toLowerCase() === headerSent.toLowerCase()` would it be spec-breaking? I probably need to read up on the nuances but was under the impression headers were case insensitive,...
It doesn't track line numbers at the moment unfortunately. What is your use case? Typically I'm only interested in line numbers when a parser throws an error on illegal syntax,...
Does your `if (err.code === 'ENOTFOUND')` code ever run in the above scenario? Also, what happens if you do: ``` js process.on('unhandledRejection', function (err) { console.error(err.stack); }); ``` ...in the...
What about if you use something like [this](https://github.com/mattinsler/longjohn) to capture more stack trace information?
Thanks. I think that narrows it down quite a bit. I made a PR here: https://github.com/greim/hoxy/pull/70 Can you check out that branch and verify it fixes it? If I don't...