Norman Paniagua
Norman Paniagua
I recently discover that conditions doesn't work as expected ``` if some_var == 'false' // Throws Expecting a variable name got: = 'false' (0) ``` It doesn't throw an exception...
I've this code ``` jade ul each row in list li a(href='/path/#{app.type}/#{row.id}')= row.name ``` And the output its ``` html Row name ``` The thing its that no matter how...
I have in my template something like ``` jade li(class="#{current_page=='dashboard'?'active':''}") ``` And throws `Expecting a variable name got: ='dashboard'?'active':'' (0)`, but according to this [question](http://stackoverflow.com/questions/7563647/jade-inline-conditional) seems to be possible on...
It will be cool to support multiple middlewares on the same route just like [koa-router](https://github.com/alexmingoia/koa-router#multiple-middleware)
Its hard to catch issues if the socket routes not throwing errors, one way to handle it, its to put a try catch in each route, but I find it...
I'm not sure if this will be inside the scope of this proposal, but I found it pretty useful to reduce nested if statements in the past. ```javascript // current...