Skip to content

Instantly share code, notes, and snippets.

@AndrewBestbier
Created August 22, 2019 21:13
Show Gist options
  • Save AndrewBestbier/ce5ba78511e996465d38b75099fdb354 to your computer and use it in GitHub Desktop.
Save AndrewBestbier/ce5ba78511e996465d38b75099fdb354 to your computer and use it in GitHub Desktop.
index.js
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => res.send('Hello World!'))
app.listen(port, () => console.log(`Example app listening on port ${port}!`))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment