Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

feathers-sync

Package Overview
Dependencies
Maintainers
4
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feathers-sync

Feathers

  • 0.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.5K
decreased by-15.62%
Maintainers
4
Weekly downloads
 
Created
Source

Feathers sync

Greenkeeper badge

Build Status Code Climate Test Coverage Dependency Status Download Status Slack Status

Synchronize service events between application instances using Redis or MongoDB publish/subscribe

About

When running multiple instances of your Feathers application (e.g. on several Heroku Dynos), service events (created, updated, patched, removed) do not get propagated to other instances. feathers-sync uses MongoDB publish/subscribe via mubsub or Redis via redis to propagate all events to all application instances.

This allows to scale real-time websocket connections to any number of clients.

The application initialized in the following example will use the local feathers-sync database and sync collection and share service events with every other instance connected to the same database:

var feathers = require('feathers');
var sync = require('feathers-sync');

var app = feathers();
app.configure(feathers.rest())
  .configure(feathers.socketio())
  .configure(sync({
    db: 'mongodb://localhost:27017/sync',
    collection: 'events'
  }))
  .use('/todos', todoService);

app.listen(3000);

Use with MongoDB:

  • db - The MongoDB connection string (e.g. mongodb://localhost:27017/events) or database object
  • collection - The name of the capped event collection (default is events)
  • connect - A callback for when the MongoDB connection has been established
  • mubsub - Settings to be passed to mubsub (e.g. {authSource:'admin'})

Additionally you can pass the original sync options:

  • size - Max size of the collection in bytes, default is 5mb
  • max - Max amount of documents in the collection
  • retryInterval - Time in ms to wait if no docs are found, default is 200ms
  • recreate - Recreate the tailable cursor when an error occurs (default is true)

Use with Redis:

  • db - The Redis connection string (e.g. redis://localhost:6379) or database object
  • connect - A callback for when the Redis connection has been established

Use with AMQP

  • uri - The AMQP connection string (e.g. amqp://guest:guest@localhost:5672)
  • prefix - A prefix that will be applied to all queues, exchanges and messages created by sync
  • amqpConnectionOptions - AMQP connection options

How it works

alt tag

Caveats

When listening to service events with this, all events are going to get propagated to all clients. This means, that your event listeners should not perform any actions that change the global state (e.g. write something into the database) because every client will perform the same action.

Instead, event listeners should only be used to update the local state (e.g. a local cache) and send real-time updates to all connected clients, e.g. all browsers listening to websocket events.

If you need to perform actions, for example setting up a first blog post after a new user has been created add it to the service method itself (which will only run on its own instance) or use feather-hooks after hooks.

Changelog

0.1.0

  • Can now use Redis or Mongo
  • Initial release

Author

License

Copyright (c) 2015 David Luecke

Licensed under the MIT license.

Keywords

FAQs

Package last updated on 11 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc