Skip to content

Instantly share code, notes, and snippets.

@mikepfeiffer
Created December 26, 2018 21:12
Show Gist options
  • Save mikepfeiffer/00b46a203e00108951a952dd1c0d30dc to your computer and use it in GitHub Desktop.
Save mikepfeiffer/00b46a203e00108951a952dd1c0d30dc to your computer and use it in GitHub Desktop.
Simple Node Demo App
const config = require('./config');
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World v2!');
});
app.listen(config.port, () => {
console.log(`Server started on port ${config.port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment