Skip to content
Alex Kit edited this page Mar 29, 2015 · 1 revision

1 debugger

This helper component can hit the breakpoint on render and from there you can inspect the components tree, and also the model.

ul > each(users) {
	debugger;
	li > '~[name]'
}

2 log

This helper component can output the expressions result to the console.

ul > each(users) {
	log (id, name);
	li > '~[name]'
}

3 Chrome extension

🔗 WebStore


🏁

Clone this wiki locally