as suggested in #7 by @hiddentao here is a means of getting CORS header into Meteor... > I managed to get the Phonegap dev app connecting to my localhost Meteor app. I got CORS working in Meteor with the following server code: ``` WebApp.rawConnectHandlers.use("/", function(req, res, next) { res.setHeader("Access-Control-Allow-Origin", "*"); next(); } ); ```