Skip to content

Commit

Permalink
chore: add status message
Browse files Browse the repository at this point in the history
Issue #47
  • Loading branch information
lewismoten committed Sep 2, 2019
1 parent a2bffaa commit 49016f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ const app = http.createServer((request, response) => {
}
});
});
app.listen(3000);
const PORT = 3000;
app.listen(PORT);

console.log(`Website running on port ${PORT}`);

const getContentType = ext =>
({
".js": "text/javascript",
Expand Down

0 comments on commit 49016f7

Please sign in to comment.