perperik
is a signaling server that could be useful especially for WebRTC clients.
WebRTC clients need an external signaling server in order to exchange information like ICE Candidates. This is why we need perperik
!
- Easy to use
- Scalable
- Lightweight
You can use and test running instance of the server from addresses below;
ws://perperik.fly.dev:80
(Non TLS)wss://perperik.fly.dev:443
(TLS)
In order to prevent abuse usement, rate limit applied as follows;
-
New Connection Limit per IP : New connections is limited per IP basis. (Default 10 connection/minute, can be changed by using IP_RATE_LIMIT_POINTS enviroment variable)
-
Send Message Limit per ID : Sent message counts is limited per ID basis. (Default 60 messages/minute, can be changed by using MSG_RATE_LIMIT_POINTS enviroment variable)
NodeJS must be installed
git clone https://github.com/murat-dogan/perperik.git
cd perperik
npm i
pm run build
npm run start
docker must be installed
git clone https://github.com/murat-dogan/perperik.git
cd perperik
docker build -t perperik:latest .
docker run -p 8080:8080 perperik
Easy to use client library for NodeJS.
Please check perperik-client project page for details.