Nodejitsu unveils: Flatiron web framework for node.js
flatironjs.com
Nodejitsu unveils: Flatiron web framework for node.js
1–8 of 8 posts
Re: Nodejitsu unveils: Flatiron web framework for node.js
#2Re: Nodejitsu unveils: Flatiron web framework for node.js
#3Re: Nodejitsu unveils: Flatiron web framework for node.js
#4Re: Nodejitsu unveils: Flatiron web framework for node.js
#5Re: Nodejitsu unveils: Flatiron web framework for node.js
#6Re: Nodejitsu unveils: Flatiron web framework for node.js
#7Nice, lightweight framework, but the template system (Plates) seems weak. It only binds to DOM elements. This means two things: a) You always have to use HTML for all of your templates; b) You have to create a new DOM element for each variable. Example Hello Batman instead of Hello
Re: Nodejitsu unveils: Flatiron web framework for node.js
#8Nice, lightweight framework, but the template system (Plates) seems weak. It only binds to DOM elements. This means two things: a) You always have to use HTML for all of your templates; b) You have to create a new DOM element for each variable. Example Hello Batman instead of Hello
`Hello ` is a biproduct of many years of webservers not being able to parse DOM structures. DSLs come and go. they make markup non-portable. Moving away from DSLs is a step toward a more portable stack.