A visual debug tool for Aurelia applications
-
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
CTRL + . (full stop)
captures the current items to the console where you can inspect them further
CTRL + / (forward slash)
toggles the context inspector window