Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
redux-api-petitioner
Advanced tools
Simple client-agnostic Redux API middleware.
npm i -S redux-api-petitioner
redux-api-petitioner
allows you to create AJAX requests to your API in a declarative way. It accepts your client instance and works with it through the redux actions. I.e. you create requests via redux actions.
// your action creator
import { generateReqTypes } from 'redux-api-petitioner';
import { USERS_LIST } from 'constants';
// is meant you have enabled a redux-thunk middleware
export const fetchUsers = () => dispatch =>
dispatch({
[GET]: {
// this will create an array [USERS_LIST_REQUEST, USERS_LIST_SUCCESS, USERS_LIST_FAILURE] for the middleware
actions: generateReqTypes(USERS_LIST),
request: {
url: '/api/v1/users'
}
}
});
Middleware expects to receive three actions, which will be fired during the dispatched action (request) handling:
USERS_LIST_REQUEST
USERS_LIST_SUCCESS
USERS_LIST_FAILURE
It allows handling each phase of the request in a declarative way using your reducer.
redux-api-petitioner
supports any API client, which conforms to the next requirement: your API library should provide the API with each request type in the lower case:
HEAD, GET, POST, PUT, PATCH, DELETE
.
Every method should return a promise.
For instance, Axios suits perfectly for it.
Full example with the redux store:
import { createStore, applyMiddleware, compose } from 'redux';
import apiMiddleware from 'redux-api-petitioner';
import reducers from './reducers';
import myApiClient from './myApiClient';
export default function configureStore(initialState = {}) {
const middlewares = [
apiMiddleware(
apiClient,
// response success mapper
resp => resp.data,
// response error mapper
resp => resp.data
),
];
const enhancers = [applyMiddleware(...middlewares)];
const store = createStore(
reducers,
initialState,
compose(...enhancers),
);
return store;
}
import apiMiddleware from 'redux-api-petitioner';
apiClient - your API client instance
responseMapper - successful request-response mapper to return the only data response back to the reducer
errorMapper - bad request response mapper to provide only error back to your reducer
import { reqMethods } from 'redux-api-petitioner';
const { HEAD, GET, POST, PUT, PATCH, DELETE } = reqMethods;
exports ES6 symbols for each request type: HEAD, GET, POST, PUT, PATCH, DELETE
.
This helper function generates an array of three actions, required for the middleware.
import { generateActions } from 'redux-api-petitioner';
// In your action creator
dispatch({
[GET]: {
// this will produce an array [USERS_LIST_REQUEST, USERS_LIST_SUCCESS, USERS_LIST_FAILURE] for the middleware
actions: generateReqTypes(USERS_LIST),
request: {
url: '/api/v1/users'
}
}
});
FAQs
Simple redux API middleware
The npm package redux-api-petitioner receives a total of 0 weekly downloads. As such, redux-api-petitioner popularity was classified as not popular.
We found that redux-api-petitioner 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.