This will install the library into your code and you can now use it
Library Usage
To use the library, require it in the file where your entry file is like this
// With requireconst{ BackEndSocket }=require("backend-socket")
Now initialize it
constexpress=require("express");const{ BackEndSocket }=require("backend-socket")constapp=express();// It requires the app and port in which the app runsconstconnection=newRealTimeConnection(app,3042);
When you initialize it, ensure to pass the app and port that your app should run in.
Now you have access to the function that sends messages
Use it like this
// Requires clientId and messageContent connection.sendResponse(clientId,messageContent);
You have to provide the clientId which can be used to send messages to specific clients
Then provide the messageContent, which can be a string or object