Skip to content

Instantly share code, notes, and snippets.

@lukehoban
Created March 1, 2016 15:23
Show Gist options
  • Save lukehoban/4e8d1e7a65ae77613c6d to your computer and use it in GitHub Desktop.
Save lukehoban/4e8d1e7a65ae77613c6d to your computer and use it in GitHub Desktop.
My first hook.io microservice
// A simple hello world microservice
// Click "Deploy Service" to deploy this code
// Service will respond to HTTP requests with a string
import sleep from 'then-sleep';
export default async function (hook) {
await sleep(500);
hook.res.end("Hello world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment