Fabiano

Results 19 comments of Fabiano

+1 to this issue. I'm deploying contracts multiple times during test to reset the contract state, so would be pretty nice to have an option to track contracts deployed while...

+1 Middleware working would be a huge plus, since I am trying to do a API that requires auth for it routes, like so: ``` app.get('admin/*', [mustAuth], function(req, res, next){...

Thanks! In this case, the Middleware request may be postponed :P I just had 1 slash wrong.. For anyone looking for future references; ``` app.all('/admin*', function(req, res, next){ if( req.session.authed...

Been using this resource before, I found it kinda hard to fit it in any use other than JSON API, how are you guys use-case? I find it most useful...

The way of use looks really fine, definitely a improvement

I am having the same issue, no data is transmitted to server

I path'ed from what @adrianbravo has suggested, but I did not submit the path, since I got to admit, I don't really understand the headers I've set! xD From line...

Hey, my solution to this was switching to Vows and Request, even wrote a post about it, hope it helps: http://fabianosoriani.wordpress.com/2011/08/31/testing-a-node-js-express-api-server-with-vows-functional/

We need an advanced mode that allow us to set the nonce manually. Often times i need to send multiple transactions but the only way is to wait around for...

@clemlak the outline for the reveal looks good. There might require some tests around the `r == 0` case, but should be little variation required. `numbers[i] = sliceNumber(r, power, i);`...