-
I have installed blade within my meteor environment, but don't know how to use it and or how to set it up.
As an "hello world" I have to next template file:
views/hello.blade:
```
html
head
body…
mlohr updated
12 years ago
-
I was super-pumped when I first read about the new template inheritance in Jade but when I looked a little closer I realized that I'm not in love with the implementation :(
So basically the inheriting…
-
Hello Felix,
how difficult would it be to support multiple statements in one query, like `BEGIN; SELECT 1; SELECT 2; COMMIT`?
I think both having `query(...)` invoke the callback function multiple t…
-
I don't suppose there's any plans to include some stats on how many times your app had been installed (and I guess uninstalled)?
Could be very useful to have it broken down by version too, so that w…
remy updated
12 years ago
-
I upgraded to 0.3.5 and transaction is no longer working...any idea? 0.3.4 worked fine.
-
it's really hard to get things working.
some examples are good.
if i make some new Meteor.Collection
and find() how to list all results in blade.
how to bind events?
-
We've been doing our own implementation of transaction support wrapped around node-mysql. It's quite a tough thing to get right, and easy to use. It is natural behavior in node-mysql that queries are …
-
would it be okay to add transaction handling to the client as per the following patch, or something along these lines?
```
Client.prototype.begin = function(callback) {
var client = this;
thi…