Skip to content

Instantly share code, notes, and snippets.

@sakukode
Created October 30, 2019 07:24
Show Gist options
  • Save sakukode/4d3d9754c372229561b44b41cb4e7570 to your computer and use it in GitHub Desktop.
Save sakukode/4d3d9754c372229561b44b41cb4e7570 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 Express!'))
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