Skip to content

Commit 65d093a

Browse files
committed
Update project structure
1 parent 513e8f6 commit 65d093a

File tree

3 files changed

+29
-23
lines changed

3 files changed

+29
-23
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"dev": "nodemon --watch src/**/*.ts --exec 'ts-node src/index.ts'",
7+
"dev": "nodemon src/index.ts",
88
"build": "tsc",
99
"start": "node dist/index.js"
1010
},

src/index.ts

+5-22
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,24 @@
11
import express from "express";
22
import { createServer } from "http";
33
import { Server } from "socket.io";
4+
import { socketHandler } from "./sockets";
45

56
const app = express();
67
const server = createServer(app);
7-
const io = new Server(server, {
8+
const port = process.env.PORT || 3001;
9+
10+
export const io = new Server(server, {
811
cors: {
912
origin: "*",
1013
},
1114
});
12-
const port = process.env.PORT || 3001;
1315

14-
let onlineUsers = 0;
16+
io.on("connection", socketHandler);
1517

1618
app.get("/", (req, res) => {
1719
res.send({ message: "Server is running." });
1820
});
1921

20-
io.on("connection", (socket) => {
21-
onlineUsers += 1;
22-
io.emit("onlineUsers", onlineUsers);
23-
24-
socket.on("message", (msg) => {
25-
io.emit(
26-
"newMessage",
27-
socket.handshake.auth.username,
28-
msg,
29-
new Date().toLocaleTimeString()
30-
);
31-
});
32-
33-
socket.on("disconnect", () => {
34-
onlineUsers -= 1;
35-
io.emit("onlineUsers", onlineUsers);
36-
});
37-
});
38-
3922
server.listen(port, () => {
4023
console.log(`Server running on port ${port}`);
4124
});

src/sockets/index.ts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { Socket } from "socket.io";
2+
import { io } from "..";
3+
4+
let onlineUsers = 0;
5+
6+
export function socketHandler(socket: Socket) {
7+
onlineUsers += 1;
8+
io.emit("onlineUsers", onlineUsers);
9+
10+
socket.on("message", (msg) => {
11+
io.emit(
12+
"newMessage",
13+
socket.handshake.auth.username,
14+
msg,
15+
new Date().getTime()
16+
);
17+
});
18+
19+
socket.on("disconnect", () => {
20+
onlineUsers -= 1;
21+
io.emit("onlineUsers", onlineUsers);
22+
});
23+
}

0 commit comments

Comments
 (0)