
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
Riot bindings for Redux.
Riot Redux requires Riot 2.1.0 or later.
npm install --save-dev riot-redux
This mixin will use the following properties set on the component (if they exist):
{Object} [actions] An object whose keys are the names of the functions that will be set on the component instance and whose values are action creators. (Note: these will be automaatically bound to the dispatch method provided by the redux store inside of the riot-redux mixin's init method.){Function} [selector] A function which takes state as a parameter and returns an object whose keys are the names of the properties that will be set on the component instance, and whose values are the values of those properties.{Object} store The Redux store passed to the mixin factory function. (Use this only if necessary).Example:
index.js
import configureStore from './store/configure-store';
import riotRedux from 'riot-redux';
const store = configureStore({age: 12});
riot.mixin('redux', riotRedux(store))
app.tag
<app>
<tiger actions={actions} selector={selector}>
<script>
this.on('mount', function() {
this.actions = {roar: () => console.log('BWAAA!')};
this.selector = (state) => ({age: state.age});
})
</script>
</app>
tiger.tag
<tiger>
<p>{age}</p> <!-- 12 -->
<button onclick={roar}></button> <!-- Clicking me prints 'BWAAA!' in the console. -->
<script>
this.mixin('redux');
</script>
</tiger>
FAQs
Riot bindings for redux
We found that riot-redux 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.