Skip to content

Instantly share code, notes, and snippets.

View weatherbell's full-sized avatar

WeatherBELL Analytics weatherbell

View GitHub Profile
@weatherbell
weatherbell / gist:439994a2faa7f0e257807c3212cd5fde
Created February 22, 2018 15:57 — forked from mediavrog/gist:49c4f809dffea4e00738a7f5e3bbfa59
CORS in Google Cloud Functions for Firebase
const cors = require('cors')({origin: true});
exports.sample = functions.https.onRequest((req, res) => {
cors(req, res, () => {
res.send('Passed.');
});
});