
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
redux-loopback
Advanced tools
You will need to create a loopback client. The instructions can be found here:
https://docs.strongloop.com/display/public/LB/LoopBack+in+the+client
npm install redux-loopback-middleware
As per the instructions from loopback in the client (see above) you should be able to require your client app in like this:
import app from 'loopback-app';
You will also need to bring in this module:
import loopbackMiddleware from 'redux-loopback-middleware';
You then need a createStoreWithMiddleware function:
const createStoreWithMiddleware = applyMiddleware(
loopbackMiddleware(app)
)(createStore);
The final result should look something like this:
import rootReducer from './reducers';
import { createStore, applyMiddleware } from 'redux';
import loopbackMiddleware from 'redux-loopback-middleware';
import app from 'loopback-app';
const createStoreWithMiddleware = applyMiddleware(
loopbackMiddleware(app)
)(createStore);
const store = createStoreWithMiddleware(rootReducer);
export default store;
Once you are all setup you can dispatch actions. These actions will call various loopback methods and then dispatch other actions that you should act upon.
import {actions: {create, find, findById, findOne, updateAll, destroyAll, destroyById}} from 'redux-loopback';
create('Landlord', {'name': 'Tim Perry'});
find('Landlord', {'name': 'Tim Perry'});
findById('Landlord', 14);
findOne('Landlord', {'name': 'Tim Perry'});
updateAll('Landlord', {'name': 'Tim Perry'}, {'some': 'update'});
destroyAll('Landlord', {'name': 'Tim Perry'});
destroyById('Landlord', 12);
All of the actions you dispatch will dispatch a pending action. Then once the data is recieved you will get one of two actions being fired:
e.g. for login you would need to handle these three actions:
{
type: 'LOOPBACK_LOGIN_PENDING',
payload: // will contain the payload you send when you dispatched the login action
}
{
type: 'LOOPBACK_LOGIN_SUCCESS',
payload: // the response from the server
}
{
type: 'LOOPBACK_LOGIN_ERROR',
payload: // the error from the server,
error: true
}
FAQs
Loopback middleware for redux
We found that redux-loopback 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.