Skip to content

Instantly share code, notes, and snippets.

@grant
Created December 19, 2021 00:51
Show Gist options
  • Save grant/fbeae4ede7524b1386b2ddbc948eac18 to your computer and use it in GitHub Desktop.
Save grant/fbeae4ede7524b1386b2ddbc948eac18 to your computer and use it in GitHub Desktop.
Simple Node Function
const FunctionsFramework = require('@google-cloud/functions-framework');
FunctionsFramework.http('helloWorld', (req, res) => {
res.send('Hot-reload me?');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment