Skip to content

Instantly share code, notes, and snippets.

@grant
Created February 19, 2019 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grant/96a38d195154f4eef22b18e3cd78a561 to your computer and use it in GitHub Desktop.
Save grant/96a38d195154f4eef22b18e3cd78a561 to your computer and use it in GitHub Desktop.
GCF + HTML
/**
* Responds to any HTTP request.
*
* @param {!express:Request} req HTTP request context.
* @param {!express:Response} res HTTP response context.
*/
exports.helloWorld = (req, res) => {
let message = req.query.message || req.body.message || 'Hello World!';
res.status(200)
.set('Content-Type', 'text/html')
.send(
`
<html>
<header><title>TITLE</title></header>
<body>
Hello my <b>${message}</b>
</body>
</html>
`);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment