Important: The code for this module has been moved into the main Feathers repository at feathersjs/feathers (package direct link). Please open issues and pull requests there. No changes in your existing Feathers applications are necessary.
Client services for Primus and feathers-primus
npm install @feathersjs/primus-client --save
Quick usage:
const feathers = require('@feathersjs/feathers');
const primus = require('@feathersjs/primus-client');
const socket = new Primus('http://api.my-feathers-server.com');
const app = feathers();
app.configure(primus(socket));
// Receive real-time events through Primus
app.service('messages')
.on('created', message => console.log('New message created', message));
// Call the `messages` service
app.service('messages').create({
text: 'A message from a REST client'
});
Please refer to the @feathersjs/primus-client documentation for more details.
Copyright (c) 2018
Licensed under the MIT license.