We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 755cafe commit 0184fa6Copy full SHA for 0184fa6
1 file changed
Server/Server.ts
@@ -1,5 +1,5 @@
1
import dgram from "dgram";
2
-const port: number = 8081;
+const port: number = 8080;
3
4
import express, { Application, Request, Response } from "express";
5
const app: Application = express();
@@ -38,7 +38,9 @@ try {
38
39
40
Server.bind(port, (): void => {
41
- console.log(`Server is active at http://localhost:${port}`);
+ console.log(`UDP Datagram Server is active at http://localhost:${port}`);
42
+ });
43
+
44
app.listen(8081, (): void => {
45
console.log(`HTTP Server is active at http://localhost:8081`);
46
});
0 commit comments