Live data from Hacker News

PayPal releases Kraken, Node.js framework

krakenjs.com

1–10 of 30 posts

Re: PayPal releases Kraken, Node.js framework

#6
====

Don't like:

dust.js templates instead of handlebars

self = this all over the place

native use of forEach and Object.keys instead of underscore or lowdash

====

I like:

that you can change the template system

grouping routes, I always add this myself, makes it more django like

security stuff like csrf

dev and prod environment awareness

directory layout is cool

apache license

uses grunt

they use Object.create!

one var statement per function

krakens

====

Overall pretty awesome.

p. s. I have no idea how to format text here.

Re: PayPal releases Kraken, Node.js framework

#8

Maybe I'm a minority, but I can't really trust anything from a company with a login screen that says "logging you in securely" for 5000ms before loading me (sometimes) to my dashboard.

You are not their target market.

Explain?

Re: PayPal releases Kraken, Node.js framework

#9
post #6

==== Don't like: dust.js templates instead of handlebars self = this all over the place native use of forEach and Object.keys instead of underscore or lowdash ==== I like: that you can change the template system grouping routes, I always add this myself, makes it more django like security stuff like csrf dev and prod environment awareness directory layout is cool apache license uses grunt they use Object.create! one…

What's wrong with using .forEach or Object.keys? Underscore will fallback to that if it's supported (which is always in nodejs).
Post reply on HN