我有两个cordova应用程序,需要通过socket连接。是否有可能只通过javascipt来做到这一点。
即;没有后端基础设施。点对点通信?
答案 0 :(得分:3)
使用此插件在手机内创建套接字服务器:
插件:https://github.com/becvert/cordova-plugin-websocket-server
插件:https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-socket
文件:https://developer.chrome.com/apps/socket
对于客户端连接使用:
插件:https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-sockets-udp
文件:https://developer.chrome.com/apps/sockets_udp
插件:https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-sockets-tcp
文件:https://developer.chrome.com/apps/sockets_tcp
使用必需的插件。
感谢。