Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
react-socket-hook
Advanced tools
![GitHub](https://img.shields.io/github/license/leihancn/react-socket-hook) ![David](https://img.shields.io/david/leihancn/react-socket-hook) ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/leihancn/react-socket-hook) ![GitH
# install
yarn add react-socket-hook
import useSocket from 'react-socket-hook'
const { send } = useSocket('wss://echo.websocket.org', {
onReceived: (data: DataType) => {
// handle data in here.
}
})
// send some data
send('something')
export declare type DataType = string | ArrayBufferLike | Blob | ArrayBufferView
export interface UseSocketOptions {
protocols?: WebSocket['protocol']
binaryType?: BinaryType
/**
* 自动连接 auto connect server when it is ready.
* @default true
*/
autoConnect?: boolean
onConnected?: () => void
onClosed?: () => void
onReceived?: (data: DataType) => void
onError?: (errEvent: Event) => void
}
export interface UseSocketReturn {
/**
* 主动调用来拉起连接。 connect server.
* 如果当前已是连接状态,则会保持状态。 if it is connected, will keep state.
*/
connect: () => void
/**
* 主动断开连接。 disconnect server.
*/
close: () => void
/**
* 发送数据。send data to server.
* @param data
*/
send: (data: DataType) => Promise<void>
}
export declare type UseSocket = (
url: string,
options?: UseSocketOptions
) => UseSocketReturn
# 开发 develop
yarn dev
# 打包 build package
yarn build
# 提交代码 commit code
yarn cz
FAQs
![GitHub](https://img.shields.io/github/license/leihancn/react-socket-hook) ![David](https://img.shields.io/david/leihancn/react-socket-hook) ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/leihancn/react-socket-hook) ![GitH
The npm package react-socket-hook receives a total of 1 weekly downloads. As such, react-socket-hook popularity was classified as not popular.
We found that react-socket-hook demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.