Last active
April 3, 2017 20:43
-
-
Save BlackDante/4062493affa81413a7aa2a7a36d43f98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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