Skip to content

Instantly share code, notes, and snippets.

@zgababa
Last active January 22, 2017 11:05
Show Gist options
  • Save zgababa/aad092b2e8ac51e0d473be81fb09d0c2 to your computer and use it in GitHub Desktop.
Save zgababa/aad092b2e8ac51e0d473be81fb09d0c2 to your computer and use it in GitHub Desktop.
index.js
'use strict';
const express = require('express');
const app = express();
const PORT = 3001;
app.listen(PORT, () => {
console.log('Server running on port', PORT);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment