
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
create-reducer-map
Advanced tools
A tiny utility to create reducer maps for Redux that follows the priciples of
Flux Standard Action (FSA) and will enable you to handle errors as a first class
concept. No need to define separate action types like SOME_ACTION_SUCCESS
and
SOME_ACTION_ERROR
, but instead use FSA actions to represent errors is a simple
and straightforward manner.
import createReducer from 'create-reducer-map';
import { SOME_ACTION, ANOTHER_ACTION } from 'path/to/actionHandlers';
const initialState = {};
export default createReducer(initialState, {
[SOME_ACTION]: {
// Handles a basic FSA action.
next: (state, payload, meta) => state,
// Handles an FSA action that represents an error.
throw: (state, payload, meta) => state,
},
// Handles any FSA action.
[ANOTHER_ACTION]: (state, payload, meta) => state
});
// Basic FSA action
{
type: SOME_ACTION,
payload: {
text: 'Do something...'
}
meta: {
optional: 'Something else...'
}
}
// FSA action representing an error
{
type: SOME_ACTION,
payload: new Error(),
error: true
}
FAQs
A tiny utility to create reducer maps for Redux.
The npm package create-reducer-map receives a total of 40 weekly downloads. As such, create-reducer-map popularity was classified as not popular.
We found that create-reducer-map 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.