Skip to content

Instantly share code, notes, and snippets.

@dullbananas
Created January 16, 2022 21:04
Show Gist options
  • Save dullbananas/f69cd52ade1d8d482dde3fac37d71478 to your computer and use it in GitHub Desktop.
Save dullbananas/f69cd52ade1d8d482dde3fac37d71478 to your computer and use it in GitHub Desktop.
minimal deta micro example
const app = function(request, response) {
response.writeHead(200, {
"Content-Type": "text/html",
});
response.end("Hello world");
};
module.exports = app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment