feathersService
FeathersService
Specifies a FeathersClient Service instance to use for the data connection. See the can-connect-feathers page for an example Feathers Client configuration.
// Bring in the feathersClient instance and setup a service.
import feathersClient from "./feathers";
const todoService = feathersClient.service( "/api/todos" );
connect( [
feathersService,
realtime
], {
// Pass the service as the `feathersService` property
feathersService: todoService
} );
See can-connect-feathers/service/service for a complete Todo Model example.