# behance-react

> Easily render behance projects using react

Latest version **0.1.0** (published 2018-01-30) · MIT license · 0 weekly downloads

## Install

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

## 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.1.0 |
| Published | 2018-01-30 |
| First published | 2018-01-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Craig Tuttle |
| Maintainers | craigtut |
| Keywords | react-component, react |

## Links

- npm: https://www.npmjs.com/package/behance-react
- Repository: https://github.com/craigtut/behance-react
- Issues: https://github.com/craigtut/behance-react/issues
- npm.io page: https://npm.io/package/behance-react

## Dependencies (4)

- [jest](https://npm.io/package/jest.md) ^22.0.5
- [react](https://npm.io/package/react.md) ^15.5.4
- [react-grid-system](https://npm.io/package/react-grid-system.md) ^3.1.2
- [react-html-parser](https://npm.io/package/react-html-parser.md) ^2.0.2

## 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.1.0 (latest) — 2018-01-30
- 0.0.1 — 2018-01-10

## README

# Behance React Render

The goal of this project is to start providing ready built components to render out various elements from Behance's API. 

> If you are looking instead for a way to pull data down from behance, check out my [Behance API](https://github.com/Craigtut/behance) project instead

## Installation

```
npm install behance-react -save
```

... or yarn


## Projects

The first phase of the project is to easily render out a project in its entirety once it has been pulled down from Behance.

Basic Usage
```javascript
import { renderProject } from 'behance-react';

class Project extends Component {
  /* ... something more ... */
  render() {
    const { project } = this.state; // Get behance project data from somewhere
    const projectRender = renderProject(project);
    return (
      <div>
        {projectRender}
      </div>
    );
  }
}

```

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