by avital on 3/27/14, 11:34 PM with 47 comments
by sanityinc on 3/28/14, 9:26 AM
by RaphiePS on 3/28/14, 2:54 AM
At first glance, this seems much better in terms of programmer productivity, given that it uses logicless templates rather than embedding HTML inside JS code. But I'd be curious if it's less performant.
by cookrn on 3/28/14, 3:58 AM
[0] https://github.com/tildeio/htmlbars/blob/master/ARCHITECTURE...
by pornel on 3/28/14, 1:34 PM
However, the tricky case they've run into:
<template name="hello">
{{#if bold}}
<b>Hello {{name}}!</b>
{{else}}
Hello {{name}}!
{{/if}}
</template>
has been solved in TAL: <template name="hello">
<b tal:omit-tag="not:bold">Hello {{name}}!</b>
</template>
by cslarson on 3/28/14, 12:14 PM
by malokai on 3/28/14, 2:38 AM
by chm on 3/28/14, 4:43 AM
I'm sold on JS, as to me PHP is very ugly and incomprehensible. My stack currently looks like this:
Node -> Express+Passport+Mongoose -> Bootstrap + Angular/Polymer + D3
I've only begun my project three weeks ago, but I would have hoped to have a prototype by now. Admittedly, I'm not working on this 40hrs a week, but still. I find it very hard to understand how everything fits together.
And then news like this appear, once or twice a week, which make me spend some hours reading on this or that new framework and how better it performs.
</rant>
[1] I did some flash, html and js about 6-7 years ago. Also learned enough php to be disgusted by it.
by grigio on 3/28/14, 11:37 AM
by elsherbini on 3/28/14, 1:50 AM
I am a new developer. I've used meteor for a couple toy projects, and found it really easy to get started. past the basics however, I found it really hard to get answers. I'm currently trying to write a simple backbone + node app to get my head around all the things meteor does automagically.
Are there any plans for learning resources coming from the meteor team?