socket broker
Build and Push Docker Images / build-and-push (push) Failing after 1m39s

This commit is contained in:
2025-08-21 10:59:09 +02:00
parent 4470eb400a
commit bf404135b5
9 changed files with 2910 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "socket-broker",
"version": "1.0.0",
"description": "A WebSocket broker with HTTP API for topic-based messaging",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.2",
"cors": "^2.8.5"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"keywords": [
"websocket",
"broker",
"socket.io",
"express"
],
"author": "",
"license": "MIT"
}