I’m developing an app using NativeScript + Angular. I need it to have a SignalR connection (SignalR.Net - NOT core) Here is the flow of the app:
The app shows a barcode to user1
Using the app on another device, user2 scan this barcode
On scan- user2 send a https request to my server saying it was scanned
- Server should tell user2 to show a prompt “it was scanned”
I already have a server that works with SignalR, I just need a way to connect to this server using NativScript + Angular.
If it helps those who have knowledge: There is a package called Nativescript-websockets but I don’t have an idea on how to use it to implement it myself.