1 2var app = new App(); 3 4app.use(HelloWorld, { "delimiter": "!" } ); 5 6app.init(function (err) { 7 if (err) { 8 console.log(err); 9 } 10}); 11 12app.hello("world"); 13