# redux-boot-apollo-client

> Redux Boot module to use Apollo Client.

Latest version **1.0.0** (published 2016-07-09) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install redux-boot-apollo-client
pnpm add redux-boot-apollo-client
yarn add redux-boot-apollo-client
bun add redux-boot-apollo-client
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-07-09 |
| First published | 2016-07-09 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | choko-org |
| Keywords | redux-boot, module, redux, apollo, apollo-client |

## Links

- npm: https://www.npmjs.com/package/redux-boot-apollo-client
- Repository: https://github.com/choko-org/redux-boot-apollo-client
- Homepage: https://github.com/choko-org/redux-boot-apollo-client#readme
- Issues: https://github.com/choko-org/redux-boot-apollo-client/issues
- npm.io page: https://npm.io/package/redux-boot-apollo-client

## Dependencies (1)

- [apollo-client](https://npm.io/package/apollo-client.md) ^0.3.29

## Alternatives

- [apollo-link-http-common](https://npm.io/package/apollo-link-http-common.md) — 879.0K weekly downloads
- [react-relay](https://npm.io/package/react-relay.md) — 336.8K weekly downloads
- [relay-test-utils](https://npm.io/package/relay-test-utils.md) — 181.6K weekly downloads
- [@vendure/core](https://npm.io/package/@vendure/core.md) — 14.8K weekly downloads
- [@pnpm/deps.graph-sequencer](https://npm.io/package/@pnpm/deps.graph-sequencer.md) — 13.4K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-07-09

## README

# Redux Boot module: Apollo Client.

[![Build Status](https://travis-ci.org/choko-org/redux-boot-apollo-client.svg?branch=master)](https://travis-ci.org/choko-org/redux-boot-apollo-client)

Redux Boot module to use the [Apollo Client](https://github.com/apollostack/apollo-client).

## Install
```bash
npm install redux-boot-apollo-client --save
```

## Usage

```js
import boot from 'redux-boot'
import createApolloClientModule from 'redux-boot-apollo-client'

import React from 'react'
import { render } from 'react-dom'
import { ApolloProvider } from 'react-apollo'

// React container of the App.
import App from './containers/App'

const initialState = {}

// Create the module with no custom options
// for the Apollo client instance.
const apolloClientModule = createApolloClientModule()

const modules = [apolloClientModule]

const app = boot(initialState, modules)

app.then(({store, action}) => {
  
  // Render your App with the Apollo provider.
  render(
    <ApolloProvider store={store} client={store.apolloClient}>
      <App />
    </ApolloProvider>,
    document.getElementById('content')
  )
})

```

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