var activator = { start(context) { context.events .channel('core-http') .on('GET/test',(req,res) => { res.end('Hello word'); }); } } module.exports.bundleActivator = activator;