Skip to content

Instantly share code, notes, and snippets.

@DarkHole1
Created June 15, 2018 18:27
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 DarkHole1/b8bb3da1c5ae0dc7a5bdd1b15ad1dd0f to your computer and use it in GitHub Desktop.
Save DarkHole1/b8bb3da1c5ae0dc7a5bdd1b15ad1dd0f to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello, world!');
});
app.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment