
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
redux-wpapi
Advanced tools
A node-wpapi integration for a Redux based Application.
This library exposes node-wpapi instance through the actionCreator callAPI. The resulting action is interpreted in the middleware, doing so by resolving the request and controlling the reducer through actions.
npm install --save redux-wpapi
Then, to enable ReduxWPAPI, use applyMiddleware()
and combineReducers()
:
import reducers from './reducers';
import ReduxWPAPI from 'redux-wpapi';
const { reducer: wp, middleware } = new ReduxWPAPI({ /* … */ });
const store = createStore(
// the reducer must be placed at the root of the state as `wp`
// so the selector knows where state lives in
{ ...reducers, wp },
applyMiddleware(middleware)
);
import React from 'react';
import { wp, selectRequest, ResponseStatus } from 'redux-wpapi';
import { connect } from 'react-redux';
export class HomePage extends React.Component {
static loadData(props) {
return props.callAPI(
// The name where the request state will be placed
'HomePagePosts',
// A callback where wpapi instance is injected
api =>
api.posts()
.page(props.page)
.perPage(props.perPage)
);
}
componentWillMount() {
HomePage.loadData(this.props);
}
componentWillReceiveProps(props) {
HomePage.loadData(props);
}
render() {
const { status, data: posts } = this.props.request;
if (!posts) {
switch (status) {
case ResponseStatus.pending: return <div>Loading…</div>;
case ResponseStatus.rejected: return <div>An error has occurred</div>;
}
}
return (
<div>
{!posts.length ? <NoPostFound /> : <PostList posts={posts} />}
</div>
);
}
}
export default connect({
request: selectRequest('HomePagePosts'),
}, { callAPI })(HomePage);
All contributions are welcome, and very much appreciated.
We are preparing some helper documents to facilitate the process (hopefully), but for now we're following the these guidelines:
Every Pull Request must have the following:
FAQs
Wordpress integration Redux middleware based on node-wpapi.
We found that redux-wpapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.