# react-tags-editor

> React Tags Editor

Latest version **0.0.18** (published 2017-04-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-tags-editor
pnpm add react-tags-editor
yarn add react-tags-editor
bun add react-tags-editor
```

## 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.0.18 |
| Published | 2017-04-03 |
| First published | 2017-03-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | misoguy |
| Maintainers | misoguy, yuyuny |
| Keywords | React, Tag, Editor |

## Links

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

## Dependencies (1)

- [lodash](https://npm.io/package/lodash.md) ^4.17.4

## 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.18 (latest) — 2017-04-03
- 0.0.17 — 2017-04-03
- 0.0.16 — 2017-03-22
- 0.0.15 — 2017-03-21
- 0.0.14 — 2017-03-13
- 0.0.13 — 2017-03-06
- 0.0.12 — 2017-03-03
- 0.0.11 — 2017-03-03
- 0.0.10 — 2017-03-03
- 0.0.9 — 2017-03-03
- 0.0.8 — 2017-03-03
- 0.0.7 — 2017-03-03
- 0.0.6 — 2017-03-03
- 0.0.5 — 2017-03-03
- 0.0.4 — 2017-03-03
- … 3 more at https://npm.io/package/react-tags-editor/versions

## README

# react-tags-editor
[![MIT](https://img.shields.io/npm/l/react-tag-input.svg?style=flat-square)](https://github.com/prakhar1989/react-tags/blob/master/LICENSE)
[![NPM Version](https://img.shields.io/npm/v/react-tag-input.svg?style=flat-square)](https://www.npmjs.com/package/react-tags-editor)

React-Tags-Editor that works out of the box

## How to install
```
npm install react-tags-editor --save
```

## How to use
1. Simply add ReactTagsEditor component to use.
2. Add ref to the component to get the current tags using ```getTags()```
```
import React, {Component} from 'react'
import {render} from 'react-dom'
import TagsEditor from 'react-tags-editor'

class App extends Component {
  render () { 
    return (
      <div>
        <h1>React Tags Editor</h1>
        <TagsEditor ref={c => { this.tagsEditor = c; }}/>
        <button onClick={() => alert(this.tagsEditor.getTags())}>
          Get Tags
        </button>
      </div>
    )
  }
}

render(<App />, document.querySelector('#app'))
```

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