Web Socket
Installation
npm install @ngxs/websocket-plugin --save
# or if you are using yarn
yarn add @ngxs/websocket-pluginConfiguration
import { NgxsModule } from '@ngxs/store';
import { NgxsWebsocketPluginModule } from '@ngxs/websocket-plugin';
@NgModule({
imports: [
NgxsModule.forRoot([]),
NgxsWebsocketPluginModule.forRoot({
url: 'ws://localhost:4200/websock'
})
]
})
export class AppModule {}Usage
Last updated

