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

react-socket.io

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-socket.io

react socket.io provider Higher Order Component, passing the socket to children

  • 1.0.3
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react-socket.io

react socket.io provider Higher Order Component, passing the socket to children

Usage

Install from npm

NPM

Documentation

Basic Usage
import SocketProvider from 'react-socket.io';

const socketOptions = {
  url: <redisUrl>,
  ioOptions: <redisOptions>,
  initialSocketEvents: [],
  onConnectEvents: [],
  onDisconnectEvents: [],
  loadingComponent: <CustomLoadingComponent>
};

ReactDOM.render(
    <Router history={browserHistory}>
      <Route path="/" component={SocketProvider(App, socketOptions))} />
      <Route path="/login" component={unauthComponent} />
    </Router>,
  document.getElementById('root')
);

In App the following props are now exposed:

socket
addSocketEvent
emitSocketEvent
removeSocketEvents
initialSocketEvents

You can give the socket provider default socket events that needs to be run directly after the socket connection is made. The on event callback returns the socket. These socket events must have the following format:

{
  type: 'on',
  name: 'connect',
  callback: socket => store.dispatch(socketConnected(socket))
},
// emit has the options property instead of callback.
{
  type: 'emit',
  name: 'client:init',
  options: {}
}
onConnectEvents

Specify what functions should be run when a socket connection is made.

onConnectEvents: [
  socket => store.dispatch(socketConnected(socket))
]
onDisconnectEvents

Specify what functions should be run when a socket is disconnected.

onDisconnectEvents: [
  store.dispatch(userLogoutClient()),
  store.dispatch(socketRemove())
]
loadingComponent

A Custom loading component that can be used to show the user the socket is reconnecting. This component gets a prop isConnecting injected. This can be used to show a difference between reconnecting and offline.

// The prop is injected by default.
<loadingComponent isConnecting={isConnecting} />;

Installation

src

Install node_modules used in ./src:

$ npm i

Compile ./src with Babel:

$ npm run compile

Development

src

To watch for changes in ./src run:

$ npm run watch

Babel will compile ./src on changes.

License

This project is licensed under the terms of the MIT license.

Keywords

FAQs

Package last updated on 14 Feb 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