Skip to content

Commit

Permalink
no host specificity
Browse files Browse the repository at this point in the history
  • Loading branch information
dolled-possum committed Jan 3, 2025
1 parent c3c094a commit 5e8015d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ const port = 8080;
const host = '127.0.0.1';
const server = http.createServer(app);

server.listen(port, host, () => {
//server.listen(port, host, () => {
server.listen(port, () => {
console.log(`Server is running on ${port} port...`);
console.log(process.version);
});

0 comments on commit 5e8015d

Please sign in to comment.