Socket
Book a DemoInstallSign in
Socket

@fe.whnhouse/use-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

@fe.whnhouse/use-socket.io

A React Hook to use with Socket.io

1.0.3
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

use-socket.io

This repo provides a simple React Hook Wrapper around socket.io, providing the user with a reference to the data object and an emit function.

Installation

This Repo is not publicly available yet, but will be made available on npm as soon as its API is finalized.

Usage

You can currently use three different exported objects.

SocketProvider

The SocketProvider should wrap your whole Application, which should be familiar from other libraries such as react-redux. It should be initialized with a uri and optionally an options object, as per socket.io Documentation.

const  App = () => {
	const options = {
		reconnectionDelay: 500
	}
	return (
		<SocketProvider  uri="ws://localhost:4000" options={options}>
			<YourApp/>
		</SocketProvider>
	)
}

useSocket

Once your socket is initialized with the Provider, you can use the useSocket hook to listen for a message and to get access to an emit function, allowing communication between client and server

const  YourApp = () => {
	const [data, emit] = useSocket('eventName') //The data property will be filled with data once the server emits an event with the event name "eventName"
	const  handleClick = () => {
		emit('message to server!') //The server will receive this event if he listens for an incoming event with the event name "eventName"
	}
	return (
		<div>
			<h1>{data}</h1>
			<button  onClick={handleClick}>
				Test Event
			</button>
		</div>
	)
}

useClient

This simple hook gives you a reference to the socket object, in case you need to do any specific operations which are not covered by the hook provided above.

const socket = useClient()

Keywords

react

FAQs

Package last updated on 21 Mar 2020

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.