service.use(function(req, res, next) {_x000D_
res.header("Access-Control-Allow-Origin", "*");_x000D_
res.header("Access-Control-Allow-Methods", "GET,HEAD,OPTIONS,POST,PUT");_x000D_
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization");_x000D_
next();_x000D_
});
_x000D_