Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itsaladin/react-native-email-validator

React Native Email Validation NPM Package
https://github.com/itsaladin/react-native-email-validator

email-validation email-validator react-native react-native-email-validator

Last synced: 29 days ago
JSON representation

React Native Email Validation NPM Package

Awesome Lists containing this project

README

        

# react-native-email-validator 👈👈👈

Validate your email address simply

| ![Screenshot a](screenshots/a.png) | ![Screenshot b](screenshots/b.png) |
| ---------------------------------- | ---------------------------------- |

## Installation

Using Yarn:

```sh

yarn add react-native-email-validator

```

Using NPM:

```sh

npm install react-native-email-validator

```

## Import

```js
import validate from 'react-native-email-validator';
```

## Check

```js
validate('[email protected]'); // true
validate('abc.com'); // false
```

## Result

```js
{
validate('[email protected]')
? console.log('Email is valid')
: console.log('Email is not valid');
}
```

## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## License

MIT

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)