Skip to content

Instantly share code, notes, and snippets.

@MeiyappanKannappa
Last active January 17, 2021 10:37
Show Gist options
  • Select an option

  • Save MeiyappanKannappa/7c239e8e62fc27c6ee6aff5bb6f5222e to your computer and use it in GitHub Desktop.

Select an option

Save MeiyappanKannappa/7c239e8e62fc27c6ee6aff5bb6f5222e 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(8000, () => {
console.log(`Example app listening at http://localhost:${8000}`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment