Skip to content

Instantly share code, notes, and snippets.

@martinsk
Created July 11, 2023 00:57
Show Gist options
  • Save martinsk/2fdea7fd0e2b548bcb8bb8ad1f3c6180 to your computer and use it in GitHub Desktop.
Save martinsk/2fdea7fd0e2b548bcb8bb8ad1f3c6180 to your computer and use it in GitHub Desktop.
const express = require('express')
const app = express()
const port = 8070
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