Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Library for client → server → client redux dispatching
npm install --save redbone
//...
const redbone = require('redbone');
//...
//Watch to client action
redbone.watch('@@server/user/GET', function(socket, action, next) {
if (!action.user_id) return next(new Error('User not found'));
//Your logic here, getUser — just example
getUser(action.user_id).then((user) => {
if (!user) return next(new Error('User not found'));
//dispatch action to client
socket.dispatch({ '@@user/current/SET', user });
}).catch(next);
});
//You can chain some of redbone methods
redbone.watch('@@server/user/SET', function(socket, action, next) {
if (!action.user) return next(new Error('User is undefined'));
setUser(action.user).then(() => socket.dispatch({ type: '@@system/SUCCESS_SAVE' )).catch(next);
}).catch((socket, err) => {
socket.dispatch({ type: '@@system/SHOW_ERROR_MODAL', title: 'Server Error', err });
});
//io — your socket io server instance
redbone(io);
After create your store, just add
//io — your socket.io connection to server
io.on('dispatch', store.dispatch);
All socket.dispatch(action)
at redbone watcher will perform action to client
Optionaly, you can add special middleware to redux for client → server dispatching
import serverDispatchMiddleware from 'redbone/client/getServerDispatchMiddleware';
//...
//io — your socket.io connection to server
middlewares.unshift(serverDispatchMiddleware(io));
//...
const createStoreWithMiddlewares = compose(applyMiddleware(...middlewares))(createStore);
const store = createStoreWithMiddlewares(reducer);
serverDispatchMiddleware
takes options as second parameter. If you want to pass server-side actions to store set next
property as true
.
If you want to filter actions, set array of types to exclude
or include
property:
middlewares.unshift(serverDispatchMiddleware(io, {
next: true,
exclude: [TYPES.EXCLUDED_TYPE, TYPES.EXCLUDED_TYPE_TOO], // This types will ignored
include: [TYPES.INCLUDED_TYPE] // This types will passed
}));
If you set next
as false
, filters will not work!
documentation comming soon Look at server side example
FAQs
Polymorphic library for two way redux dispatching
We found that redbone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.