I really like using knockout.js and templates to render my web-app's pages. But one thing I keep having trouble with is debugging faults in templates.
Say I want to bind to a property called 'items' but in the template i make a typo and bind to the (non existing) property 'item'.
Using chrome debugger the only message that I get is that 'item' is not defined.
Are there tools, techniques or coding styles that help me get more information about the binding fault?

