A singleton-style instance of dojo/router/RouterBase. See that module for specifics.
See the dojo/router reference documentation for more information.
router.register("/widgets/:id", function(evt){ // If "/widgets/3" was matched, // evt.params.id === "3" xhr.get({ url: "/some/path/" + evt.params.id, load: function(data){ // ... } }); });