Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-falcor

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-falcor

A helper library for integratig Redux & Falcor

  • 2.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
Maintainers
1
Weekly downloads
 
Created
Source

Redux-Falcor

redux-falcor helps connect your Redux applications to your Falcor API.

build status npm version

Change Log

Installation

To install:

npm install --save redux-falcor

Usage

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
});

Licence

MIT

Keywords

FAQs

Package last updated on 24 Oct 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc