Skip to content

Instantly share code, notes, and snippets.

@emersxw
Created June 18, 2018 17:05
Show Gist options
  • Save emersxw/240b61bc6cc37d7039285652814c381c to your computer and use it in GitHub Desktop.
Save emersxw/240b61bc6cc37d7039285652814c381c 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('Magic happens on port 3000')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment