
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
react-hermod-js
Advanced tools
React hooks and context for hermod-js
MIT license.
hermod-js is a peer dependency, so you need to install that too. This is intentional to make switching versions easier, as well as using hermod-js directly outside this React wrapper (should you need to).
npm install react-hermod-js hermod-js
yarn add react-hermod-js hermod-js
The package comes with typings built-in.
The point of Hermod is to have a single WebSocket connection between a client and a server. This package uses a context provider to accomplish that.
In the main file of your app (e.g. index.tsx or App.tsx) wrap your app inside HermodProvider and pass a ServerConfig (from hermod-js) and JWT string as props:
import { HermodProvider } from 'react-hermod-js';
const App = () => {
// HermodProvider will automatically connect to the configured server,
// and reconnect if the config or token changes.
return <HermodProvider
config={{
hostname: "example.com",
port: 443,
secure: true,
path: "/hermod",
timeout: 5000,
}}
// token is optional
token={"eyJ..."}
>
<RestOfYourApp />
</HermodProvider>
}
Everything nested inside HermodProvider can now access these hooks:
import { useHermodContext, useHermodRequest } from 'react-hermod-js';
const MyPage = () => {
const [webSocketRouter, globalError1] = useHermodContext()
// useHermodRequest takes a Hermod compiler-generated endpoint function
// as an argument. It infers the typings from that, so lastMessage and send()
// should be typed correctly.
const {
lastMessage,
isOpen,
send,
sessionError,
globalError,
} = useHermodRequest(requestMyFavouriteEndpoint)
return <>
<p>
Last message: {lastMessage}
</p>
</>
}
React Strict Mode: Due to the way Hermod handles session handshakes, there's no sensible way to rapidly create and then close a session, as would be the case with the double invocations enforced by React Strict Mode. Therefore, this package currently doesn't support it.
FAQs
React utilities for hermod-js
The npm package react-hermod-js receives a total of 4 weekly downloads. As such, react-hermod-js popularity was classified as not popular.
We found that react-hermod-js 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
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.