hexnut-client
is a middleware based websocket client designed to be used with Hexnut.
To get an idea about the core concepts of hexnut, check out the documentation page for hexnut server.
npm i hexnut-client
const HexnutClient = require('hexnut-client');
const client = new HexnutClient();
client.connect('ws://localhost:8080');
const HexnutClient = require('hexnut-client');
const handle = require('hexnut-handle');
const client = new HexnutClient();
client.use(handle.connect(ctx => {
ctx.send('Hello server!');
}));
client.connect('ws://localhost:8080');
Using Hexnut with react is easily accomplished via the react context API.
const HexnutClient = require('hexnut-client');
const React = require('react');
const reactDOM = require('react-dom');
const client = new HexnutClient();
client.connect('ws://localhost:8080');
const HexnutContext = React.createContext(client);
// ... Later
reactDOM.render(
document.getElementById('root'),
<HexnutContext.Provider value={client}>
<App/>
</HexnutContext.Provider>
);
This hook can be used when a react component (most likely a view) should control the middleware chain. It clears all the middleware and sets the chain provided to the hook.
const useHexnutMiddleware = middlewareArray => {
const middlewareStr = middlewareArray.map(mw => mw.toString()).join('');
useEffect(() => {
client.middleware.splice();
middlewareArray.forEach(middleware => client.use(middleware));
}, [middlewareStr]);
};
// Then, inside a function component
const MyComponent = props => {
const client = useContext(clientContext);
const [receivedMsg, setReceivedMsg] = useState(false);
useHexnutMiddleware([
bodyparser.json(),
ctx => {
if (ctx.isMessage) {
setReceivedMsg(true);
if (ctx.message.type === 'showProps') {
ctx.send(JSON.stringify(props));
}
}
}
]);
return receivedMsg
? <div>We got a message</div>
: <div>Radio silence</div>;
}