1.0.0 • Published 7 years ago

react-native-feathers-connector v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

A Simple React Native Feathers Connector

This simple feathers connector should allow you to connect your component to your feathers backend quickly and painlessly.

How to use:

const HelloWorld = ({ feathers }) => {
  console.log(feathers);
  return <Text>Hello World</Text>
}

connectFeathers(HelloWorld);

Make sure to wrap your app in a <FeathersWrapper /> component at the highest level.

If you look at your RN debugger, you should see a feathers object. That's it. You can also pass in an endpoint option.

Help is always welcome and appreciated.