# @ian_test_nooks/use-input

> React Hook to update your Input box and validator input data

Latest version **1.0.0** (published 2021-04-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ian_test_nooks/use-input
pnpm add @ian_test_nooks/use-input
yarn add @ian_test_nooks/use-input
bun add @ian_test_nooks/use-input
```

## 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 | 2021-04-16 |
| First published | 2021-04-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | AZSquad.co |
| Maintainers | iian |
| Keywords | react, native, hook, input |

## Links

- npm: https://www.npmjs.com/package/@ian_test_nooks/use-input
- Repository: https://github.com/azsquadDev/Nooks
- Homepage: https://github.com/azsquadDev/Nooks#readme
- Issues: https://github.com/azsquadDev/Nooks/issues
- npm.io page: https://npm.io/package/@ian_test_nooks/use-input

## 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 (latest) — 2021-04-16

## README

# @ian_test_nooks/use-input

React Hook to update your Input box and validator input data

```
npm i @ian_test_nooks/use-input
```

 useInput(default Text, validator function);
```
import useInput from "@ian_test_nooks/use-input";

const App = () => {
  const maxLen = (value) => {
    return value.length <= 10;
  };
  const name = useInput("Mr.", maxLen);
  return (
    <div className="App">
      <h1>Hello`1</h1>
      <input placeholder="Name" {...name} />
    </div>
  );
};
```

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