File tree 3 files changed +29
-23
lines changed
3 files changed +29
-23
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " " ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
- "dev" : " nodemon --watch src/**/*.ts --exec 'ts-node src/ index.ts' " ,
7
+ "dev" : " nodemon src/index.ts" ,
8
8
"build" : " tsc" ,
9
9
"start" : " node dist/index.js"
10
10
},
Original file line number Diff line number Diff line change 1
1
import express from "express" ;
2
2
import { createServer } from "http" ;
3
3
import { Server } from "socket.io" ;
4
+ import { socketHandler } from "./sockets" ;
4
5
5
6
const app = express ( ) ;
6
7
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 , {
8
11
cors : {
9
12
origin : "*" ,
10
13
} ,
11
14
} ) ;
12
- const port = process . env . PORT || 3001 ;
13
15
14
- let onlineUsers = 0 ;
16
+ io . on ( "connection" , socketHandler ) ;
15
17
16
18
app . get ( "/" , ( req , res ) => {
17
19
res . send ( { message : "Server is running." } ) ;
18
20
} ) ;
19
21
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
-
39
22
server . listen ( port , ( ) => {
40
23
console . log ( `Server running on port ${ port } ` ) ;
41
24
} ) ;
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments