https://github.com/hduc/socket.io-server-chat
https://github.com/hduc/socket.io-server-chat
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hduc/socket.io-server-chat
- Owner: Hduc
- Created: 2023-03-19T04:25:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-19T04:39:06.000Z (about 3 years ago)
- Last Synced: 2025-03-15T11:50:15.803Z (about 1 year ago)
- Language: TypeScript
- Size: 126 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Socket.Chat
# Setup Deploy in server
## Step 1
>Download nodejs https://nodejs.org/en/download/current/
## Step 2
>npm install -g pm2
## Step 3
cd folder
>pm2 start server.js --name=SOCKET_IO
## Step 4 (autorun in reboot windows)
>npm install pm2-windows-startup -g
>pm2 -f save
>pm2-startup install
## stop
>pm2 stop SOCKET_IO
## start
>pm2 start SOCKET_IO
## status all
>pm2 list
## Done