Skip to content

Instantly share code, notes, and snippets.

@BlackDante
Last active April 3, 2017 20:43
Show Gist options
  • Save BlackDante/4062493affa81413a7aa2a7a36d43f98 to your computer and use it in GitHub Desktop.
Save BlackDante/4062493affa81413a7aa2a7a36d43f98 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(3000, () => console.log('Server is running on :3000'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment