
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Redux-like store with RxJS Observable output and effects
npm i redogs
import { createStandardAction, createStore, getType, isActionOf } from 'redogs';
import { filter, map, tap, withLatestFrom } from 'rxjs/operators';
// create reusable action creators
const incrementAction = createStandardAction('INCREMENT')<void>();
const decrementAction = createStandardAction('DECREMENT')<void>();
const resetAction = createStandardAction('RESET')<number>();
// create a store
const store = createStore(reducer, effect);
// listen to the state updates
store.state$.subscribe(state => {
console.log(state);
});
// dispatch actions
store.dispatch(incrementAction());
store.dispatch(incrementAction());
store.dispatch(decrementAction());
store.dispatch(resetAction(42));
// A reducer
function reducer(action, state = 0) {
switch (action.type) {
case (getType(incrementAction)): {
return state + 1;
}
case (getType(decrementAction)): {
return state + 1;
}
case (getType(resetAction)): {
return action.payload;
}
default:
return state;
}
}
// an effect
function effect(actions$, state$) {
return actions$.pipe(
filter(isActionOf([incrementAction])),
withLatestFrom(state$),
tap(([action, state]) => {
// perform sideeffects
console.log('Action', action.type);
console.log('Payload', action.payload);
console.log('State', state);
}),
map(() => {
// or generate another action
return { type: 'ANOTHER_ACTION' };
})
)
}
FAQs
Stream driven redux state manager
We found that redogs 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.