Skip to content

Instantly share code, notes, and snippets.

@yaasita
Created December 23, 2019 10:11
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 yaasita/340fc09fa89d7ab3e83cb3e4d40eca31 to your computer and use it in GitHub Desktop.
Save yaasita/340fc09fa89d7ab3e83cb3e4d40eca31 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!'))
app.listen(port, '0.0.0.0', () => 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