Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50660 views
1
2
var app = new (require("broadway").App)();
3
4
// Passes the second argument to `helloworld.attach`.
5
app.use(require("./plugins/helloworld"), { "delimiter": "!" } );
6
7
app.init(function (err) {
8
if (err) {
9
console.log(err);
10
}
11
});
12
13
app.hello("world");
14
15