Mike Hemesath

Results 31 comments of Mike Hemesath

what about allowing for the action to be a function, or an array of functions if middleware is involved? exports.index = function(req, res){ res.send('forum index'); }; or exports.index = [authenticateUser,...

Yeah, app.get works fine, especially with app.param, thats what I'm doing now. The routes are very clean, I'm just lazy and don't like typing them all out :p

I just ran into this issue as well. Added a placeholder test file with the intention of adding tests. I got distracted, and attempted to fix a different issue first...

So are you going to deprecate support for async exports then?

This is happening for me as well, but only about 75% of the time. - Expres v2.4.0 - Expresso v0.7.9

Thanks for the feedback. Yeah I was on the fence with including Jade, but it was already a dev dependency, and I figured it cleaned up the XML rendering logic...

Are multiple formats ever going to be needed? If I'm using PNG, I can't see a reason that CSS3 or SVG would be needed. Likewise, off the top of my...

Cool, if we are using keyword arguments, can I propose we also add opacity and a vector direction option? I know in svg for sure it's trivial to create gradients...

We might be able to apply a filter to the SVG gradient to give it a smoother appearance. The SVG gradients appearance only seems to be rough when the size...

Yeah, I thought about that, but loading in the file would be an async operation. Should I just read in the jade file sync? The stylesheets should only be compiled...