Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created January 8, 2019 13:40
Show Gist options
  • Save pablocattaneo/02c8e818104d03beb83e66a6d25f7bf9 to your computer and use it in GitHub Desktop.
Save pablocattaneo/02c8e818104d03beb83e66a6d25f7bf9 to your computer and use it in GitHub Desktop.
const express = require('express')
const app = express()
app.get('/', (req, res) => {
res.send('Hello Mundo!')
})
app.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment