
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
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 24 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.