
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
@vivid-planet/redux-paging
Advanced tools
A higher order component decorator for paging using Redux and React
redux-paging works with React Redux to render a paging in
React to use Redux to store all of its state.
npm install --save @vivid-planet/redux-paging
The store should know how to handle actions coming from the paging component. To enable this, we need to pass the pagingReducer to your store.
import { combineReducers } from 'redux';
import { reducer as pagingReducer } from '@vivid-planet/redux-paging';
const rootReducer = combineReducers({
// ...your other reducers here
// you have to pass pagingReducer under 'paging' key
paging: pagingReducer
})
<Paging /> ComponentThe <Paging /> component renders the pages calculated with the total and perPage props.
The basic usage goes as follows:
<Paging
name="pagingName"
total={number}
perPage={number}
onChangePage={changePage}
/>
The new page is passed as argument to your callback function. Tell the store to change to current page after request is finished.
import { change } from '@vivid-planet/redux-paging';
export const changePage = (page) => {
return (dispatch, getState) => {
return sleep(1000).then(() => {
// simulate server latency
dispatch(change('pagingName', page));
});
}
}
FAQs
A higher order component decorator for paging using Redux and React
We found that @vivid-planet/redux-paging demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.