Skip to content

Instantly share code, notes, and snippets.

@mcollina
Created November 24, 2016 11:09
Show Gist options
  • Save mcollina/77f1e729139ff9a9fabfd449589d06fe to your computer and use it in GitHub Desktop.
Save mcollina/77f1e729139ff9a9fabfd449589d06fe to your computer and use it in GitHub Desktop.
'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