Skip to content

Instantly share code, notes, and snippets.

@yusinto
Last active April 13, 2018 11:30
Show Gist options
  • Save yusinto/843e1a7a1bed8ecfed34f04efeffec5f to your computer and use it in GitHub Desktop.
Save yusinto/843e1a7a1bed8ecfed34f04efeffec5f to your computer and use it in GitHub Desktop.
Cloud functions emulator demo
const greet = (req, res) => {
console.log('hello world from the emulator!');
res.send('ok google');
};
module.exports = {
greet,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment