Emostar

Results 26 comments of Emostar

I would say, switch to mocha... that is what I did. There is no assert.response in mocha, but you can include a http library that will do the same thing....

Expresso doesn't support the continue event on a request, so I had to modify it to work with it. Please take a look at mathrawka/expresso@3f13a95 for my quick patch. Then...

You should use `go install github.com/pilu/fresh` and then the `fresh` binary will be in your $PATH

This is what I use in production for various servers. https://gist.github.com/mathrawka/f7b31c73e5fb95c2720d

I just answered your questions. (Oddly I don't notifications about gist comments).

I use a 3rd party service, so the logs on the server don't ever get touched unless I need to find some real old data. But I have no qualms...

I have used loggly and papertrail in the past. Here is a snippet of more production code: ``` js logger = new (winston.Logger)({ transports: [ new (winston.transports.Mail)({ to : 'xxx'...

Yeah, I just share it be doing a 'app.set("logger", logger)' when I create it.

I think the official Node.js documentation spells it out... > Note that uncaughtException is a very crude mechanism for exception handling. > Don't use it, use domains instead. If you...

For my use cases (99% mobile traffic, peak ~10 req/s), I am happy with the performance I am getting. The biggest bottleneck for me are are slow and laggy 3G...