This feature is part of spludo since 1.1.
If you want to execute something when the entire application is loaded, you can register on that event.
bootstrap_manager.whenLoaded(function() {
console.log('I am there!');
});
This function is used internally to run tests, when everything is set up. But could be used in your own workflow.