connect ionic3 with socket clusters websocket or socket.io

812 Views Asked by At

I have working code with cordova but want to transform it to ionic3 but unable to find any reference. I don't want to use Fire-base i have my own socket server. I know i could have added some of my code to it but i am only able to find of ionic 2#

1

There are 1 best solutions below

1
On

You can use some Angularjs websocket wrapper, like this.

import {$WebSocket} from 'angular2-websocket/angular2-websocket'
const ws = new $WebSocket("url");
ws.send(event);