# react-meteor-data

> Meteor packages for a great React developer experience

Latest version **0.2.11** (published 2017-10-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-meteor-data
pnpm add react-meteor-data
yarn add react-meteor-data
bun add react-meteor-data
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.11 |
| Published | 2017-10-19 |
| First published | 2016-10-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | Andy Edwards |
| Maintainers | jedwards1211 |
| Keywords | meteor, react |

## Links

- npm: https://www.npmjs.com/package/react-meteor-data
- Repository: https://github.com/jedwards1211/react-meteor-data
- Homepage: https://github.com/jedwards1211/react-meteor-data#readme
- Issues: https://github.com/jedwards1211/react-meteor-data/issues
- npm.io page: https://npm.io/package/react-meteor-data

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.2.11 (latest) — 2017-10-19
- 0.2.10 — 2017-01-06
- 0.2.9 — 2016-10-04
- 0.2.9-beta.0 — 2016-10-04

## README

# This is not the official `react-meteor-data` package!

The official Atmosphere package is at https://github.com/meteor/react-packages/tree/devel/packages/react-meteor-data.
This is an unofficial npm package version of it.

## `react-meteor-data`

This package provides an integration between React and [`tracker`](https://atmospherejs.com/meteor/tracker), Meteor's reactive data system.

### Install

To install the package, use `meteor add`:

```bash
meteor add react-meteor-data
```

You'll also need to install `react` and `react-addons-pure-render-mixin` if you have not already:

```bash
npm install --save react react-addons-pure-render-mixin
```

### Usage

This package exports a symbol `createContainer`, which you can use to create a Higher Order Container to wrap your data using container.

```js
import { createContainer } from 'meteor/react-meteor-data';

export default FooContainer = createContainer(() => {
  // Do all your reactive data access in this method.
  // Note that this subscription will get cleaned up when your component is unmounted
  var handle = Meteor.subscribe("todoList", this.props.id);

  return {
    currentUser: Meteor.user(),
    listLoading: ! handle.ready(),
    tasks: Tasks.find({listId: this.props.id}).fetch(),
  };
}, Foo);
```
The first argument to `createContainer` is a reactive function that will get re-run whenever its reactive inputs change.

The returned component will, when rendered, render the second argument (the "lower-order" component) with its provided `props` in addition to the result of the reactive function. So `Foo` will receive `FooContainer`'s `props` as well as `{currentUser, listLoading, tasks}`.

For more information, see the [React article](http://guide.meteor.com/react.html) in the Meteor Guide.

---
_Source: https://npm.io/package/react-meteor-data · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
