
Security News
Node.js Considers Public Workflow for Security Reports Amid AI-Driven Surge
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.
redux-mid-async-func
Advanced tools
Use Promise.resolve to return dispatch result.
Imagine you have two apis. API-1 and API-2. There're no dependence between them.
const thunk1 = (dispatch, getState) => {
API1.fetch({data: getState().data1}).then(resp => dispatch({ type: 'API1.success', payload: resp }));
}
const thunk2 = (dispatch, getState) =>{
API2.fetch({data: getState().data2}).then(resp => dispatch({ type: 'API2.success', payload: resp }));
}
store.dispatch(thunk1);
store.dispatch(thunk2);
One day, API-2 in some situation need some data depends on API-1. And some additional actions need to be dispatched after thunk1 and thunk2 finished. With redux-thunk you don't now whether have async FUNCs been finished. So here, you may use redux-mid-async-func.
What different with thunk is that, please ensure all the thunk FUNCs return a Promise.
const thunk1 = async(dispatch, getState) => {
return new Promise(r => {
API1.fetch({data: getState().data1}).then(resp => r(dispatch({ type: 'API1.success', payload: resp })));
});
}
const thunk2 = async(dispatch, getState) => {
return new Promise(r => {
API2.fetch({data: getState().data2}).then(resp => r(dispatch({ type: 'API2.success', payload: resp })));
});
}
(async() => {
await store.dispatch(thunk1);
await store.dispatch(thunk2);
})();
FAQs
Use Promise.resolve to return dispatch result.
The npm package redux-mid-async-func receives a total of 1 weekly downloads. As such, redux-mid-async-func popularity was classified as not popular.
We found that redux-mid-async-func 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
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.