aurelia-debugger
October 23, 2015 ยท View on GitHub
A visual debug tool for Aurelia applications

Installation
-
Install via JSPM
jspm install github:charlespockert/aurelia-debugger -
Register the plugin in your Aurelia startup:
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
// Add plugin here
.plugin('charlespockert/aurelia-debugger');
aurelia.start().then(a => a.setRoot('app'));
}
Thats it!
Start your application and you should see the context inspector window
Key Commands:
CTRL + . (full stop)
captures the current items to the console where you can inspect them further
CTRL + / (forward slash)
toggles the context inspector window