Skip to content

Instantly share code, notes, and snippets.

@Derrick-Sherrill
Created March 1, 2022 16:24
Show Gist options
  • Save Derrick-Sherrill/5f09decdc35e75c88bdedfa8a6478ed9 to your computer and use it in GitHub Desktop.
Save Derrick-Sherrill/5f09decdc35e75c88bdedfa8a6478ed9 to your computer and use it in GitHub Desktop.
Simple Node express server
const express = require('express')
const app = express()
const port = 8080
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