1 2var app = new (require("broadway").App)(); 3 4// Passes the second argument to `helloworld.attach`. 5app.use(require("./plugins/helloworld"), { "delimiter": "!" } ); 6 7app.init(function (err) { 8 if (err) { 9 console.log(err); 10 } 11}); 12 13app.hello("world"); 14 15