Installation
Installation
npm i @ngxf/platform @ngxf/socket.io socket.io-client @types/socket.io-client --save
# or if you are using yarn
yarn add @ngxf/platform @ngxf/socket.io socket.io-client @types/socket.io-clientimport { NgModule } from '@angular/core';
import { NgxfModule } from '@ngxf/platform';
import { NgxfSocketIOModule } from '@ngxf/socket.io';
@NgModule({
imports: [
NgxfModule,
NgxfSocketIOModule
]
})
export class ComponentModule {}Last updated