Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
redux-falcor
Advanced tools
redux-falcor helps connect your Redux applications to your Falcor API.
To install:
npm install --save redux-falcor
First include redux-falcor in the initial setup of your application.
import { createStore, combineReducers, applyMiddleware, compose } from 'redux';
import { createFalcorMiddleware, falcorReducer } from 'redux-falcor';
import { Model } from 'falcor';
const reducer = combineReducers({
entities: falcorReducer
// Other reducers here
});
// The falcor model that redux-falcor will query
const falcor = new Model({
cache: {
// Optional data here
}
});
const finalCreateStore = compose(
applyMiddleware(createFalcorMiddleware(falcor))
)(createStore);
const store = finalCreateStore(reducer);
We can now access the data returned from Falcor through state.entities.*
. To
query that data we just need to dispatch a special action.
import { retrievePath } from 'redux-falcor';
store.subscribe(() =>
console.log(store.getState())
);
store.dispatch(retrievePath('usersById[35]["email"]');
// This will logged:
// {
// entities: {
// usersById: {
// 35: {
// email: "foo@bar.com"
// }
// }
// }
// }
While its not suggested, you can also hook into the Falcor promise directly if you need to. For example:
import { retrieveValue } from 'redux-falcor';
store.dispatch(retrieveValue('usersById[35]["email"]').then((email) => {
console.log(email); // foo@bar.com
});
MIT
FAQs
A helper library for integratig Redux & Falcor
The npm package redux-falcor receives a total of 16 weekly downloads. As such, redux-falcor popularity was classified as not popular.
We found that redux-falcor 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.