Skip to content

Instantly share code, notes, and snippets.

@iambryancs
Created December 9, 2016 16:53
Show Gist options
  • Save iambryancs/48719274c30a31acd4539ca70353280a to your computer and use it in GitHub Desktop.
Save iambryancs/48719274c30a31acd4539ca70353280a to your computer and use it in GitHub Desktop.
Sample app.js
// Express framework
var express = require('express');
var app = express();
// Handle requests to /
app.get('/', function (req, res) {
res.send('Hello World!');
});
// Setup port
app.listen(process.env.PORT || 8000);
module.exports = app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment