Skip to content

Commit

Permalink
local binding only
Browse files Browse the repository at this point in the history
  • Loading branch information
dolled-possum committed Jan 3, 2025
1 parent 06dbaeb commit be1573a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ wss.on('connection', (clientSocket, req, remoteSocket) => {
});
});

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

0 comments on commit be1573a

Please sign in to comment.