# @tonydinh/react-toolkit

> A collection of reusable react components.

Latest version **1.0.0-rc.17** (published 2018-05-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install @tonydinh/react-toolkit
pnpm add @tonydinh/react-toolkit
yarn add @tonydinh/react-toolkit
bun add @tonydinh/react-toolkit
```

## 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-rc.17 |
| Published | 2018-05-21 |
| First published | 2017-07-10 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 8 |
| Dependencies | 13 |
| Unpacked size | 620.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Tony Dinh |
| Maintainers | tonydinh |
| Keywords | react, component |

## Links

- npm: https://www.npmjs.com/package/@tonydinh/react-toolkit
- Repository: https://github.com/tony-dinh/react-toolkit
- Homepage: https://github.com/tony-dinh/react-toolkit#readme
- Issues: https://github.com/tony-dinh/react-toolkit/issues
- npm.io page: https://npm.io/package/@tonydinh/react-toolkit

## Dependencies (13)

- [react](https://npm.io/package/react.md) ^16.2.0
- [lodash](https://npm.io/package/lodash.md) ^4.17.4
- [moment](https://npm.io/package/moment.md) ^2.20.1
- [babel-cli](https://npm.io/package/babel-cli.md) ^6.24.1
- [flatpickr](https://npm.io/package/flatpickr.md) ^3.0.6
- [react-dom](https://npm.io/package/react-dom.md) ^16.2.0
- [classnames](https://npm.io/package/classnames.md) ^2.2.5
- [prop-types](https://npm.io/package/prop-types.md) ^15.5.10
- [react-list](https://npm.io/package/react-list.md) ^0.8.6
- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.23.0
- [inline-style-prefixer](https://npm.io/package/inline-style-prefixer.md) ^3.0.8
- [react-transition-group](https://npm.io/package/react-transition-group.md) ^2.2.1
- [hoist-non-react-statics](https://npm.io/package/hoist-non-react-statics.md) ^2.3.1

## 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

- 1.0.0-rc.17 (latest) — 2018-05-21
- 1.0.0-rc.16 — 2018-05-18
- 1.0.0-rc.15 — 2018-05-18
- 1.0.0-rc.14 — 2018-05-09
- 1.0.0-rc.13 — 2018-04-12
- 1.0.0-rc.12 — 2018-04-06
- 1.0.0-rc.11 — 2018-04-06
- 1.0.0-rc.10 — 2018-04-06
- 1.0.0-rc.9 — 2018-03-12
- 1.0.0-rc.8 — 2018-01-26
- 1.0.0-rc.7 — 2018-01-18
- 1.0.0-rc.6 — 2018-01-03
- 1.0.0-rc.5 — 2018-01-03
- 1.0.0-rc.4 — 2017-12-22
- 1.0.0-rc.3 — 2017-12-14
- … 30 more at https://npm.io/package/@tonydinh/react-toolkit/versions

## README

# React Toolkit

[![npm version](https://img.shields.io/npm/v/@tonydinh/react-toolkit.svg?)](https://www.npmjs.com/package/@tonydinh/react-toolkit)
[![npm downloads](https://img.shields.io/npm/dt/@tonydinh/react-toolkit.svg)](https://www.npmjs.com/package/@tonydinh/react-toolkit)
[![npm downloads](https://img.shields.io/npm/dm/@tonydinh/react-toolkit.svg)](https://www.npmjs.com/package/@tonydinh/react-toolkit)

React Toolkit is a collection of re-useable [React](https://facebook.github.io/react/) components. See the documentation [here](https://tony-dinh.github.io/react-toolkit/).

The guide below explains how one might integrate this module using [webpack](https://webpack.github.io/) as a module bundler.

## Installation
```
$ npm install --save @tonydinh/react-toolkit
```

## Prerequisites
It might be useful to configure webpack with an alias for resolving the components in this module.

```js
// webpack.config.js
const config = {
...
    resolve: {
        alias: {
            "react-toolkit": 'node_modules/@tonydinh/react-toolkit/dist/components'
        }
    }
}
```

## Importing
With the configuration above, we can import components from the module with:

```jsx
import Button from 'react-toolkit/button'
```

## Developing
### Requirements
The module supports the latest [Node LTS](https://github.com/nodejs/LTS).

### Getting Started
Once you have cloned the [repository](https://github.com/tony-dinh/react-toolkit), run the following at the `$PROJECT_ROOT` to start the development server.

```
$ npm i && npm start
```

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