Skip to content

Instantly share code, notes, and snippets.

@ManfredLange
Created August 18, 2018 20:57
Show Gist options
  • Save ManfredLange/44a5949e9f3de115fd3df53c5fc3a257 to your computer and use it in GitHub Desktop.
Save ManfredLange/44a5949e9f3de115fd3df53c5fc3a257 to your computer and use it in GitHub Desktop.
Create web server and set up handling HTTP GET request for "/"
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.send('Hello, world!')
});
app.listen(3000, function() {
console.log('Example app listening on port 3000!')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment