# aurelia-react

> An Aurelia plugin to enable the use of React components within Aurelia views.

Latest version **0.0.3** (published 2016-06-29) · CC0-1.0 license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install aurelia-react
pnpm add aurelia-react
yarn add aurelia-react
bun add aurelia-react
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2016-06-29 |
| First published | 2016-06-29 |
| Weekly downloads | 0 |
| License | CC0-1.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Corstian Boerman |
| Maintainers | corstianboerman |
| Keywords | aurelia, aureliajs, plugin, react, reactjs |

## Links

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

## 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.0.3 (latest) — 2016-06-29
- 0.0.2 — 2016-06-29
- 0.0.1 — 2016-06-29
- 1.0.0 — 2016-06-29

## README

# aurelia-react plugin

**An Aurelia plugin to enable the use of React components within Aurelia views.**

## Installation

Install the plugin through jspm:

```shell
jspm install aurelia-react
```

Next register the plugin with Aurelia, also register your react components with the plugin:

```diff
import { ReactComponent } from 'components/my-react-component';
import * as Components from 'components/components';

export function configure(aurelia) {
  aurelia.use
    .standardConfiguration()
    .developmentLogging()
+   .plugin('aurelia-react', {
+     ReactComponent,
+     Components
+   });

    aurelia.start().then(() => aurelia.setRoot());
}
```

## Usage

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