Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created May 1, 2020 18:44
Show Gist options
  • Select an option

  • Save r3dm1ke/8458d43fe4c5c4c71b2b67066c62f570 to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/8458d43fe4c5c4c71b2b67066c62f570 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => res.send('Hello World From Unikernel!'));
app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment