Created
November 24, 2016 11:09
-
-
Save mcollina/77f1e729139ff9a9fabfd449589d06fe 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
'use strict' | |
var app = require('express')() | |
var http = require('http') | |
var server = http.createServer(app) | |
app.get('/', function (req, res) { | |
res.send('hello world') | |
}) | |
server.listen(3000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment