Skip to content

Instantly share code, notes, and snippets.

@lelouchB
Last active September 23, 2020 08:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?

Indenting your code by four spaces

const express = require('express')
const app = express()
const port = 3000

app.get('/', (req, res) => {
  res.send('Hello World!')
})

app.listen(port, () => {
   console.log(`Example app listening at http://localhost:${port}`);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment