# is-email-like

> Check if a string is email like

Latest version **3.1.0** (published 2025-11-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-email-like
pnpm add is-email-like
yarn add is-email-like
bun add is-email-like
```

## Health

**Score 60/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 3.1.0 |
| Published | 2025-11-11 |
| First published | 2016-05-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM |
| Node | >=20 |
| Dependencies | 2 |
| Unpacked size | 2.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 25 |
| Author | Sindre Sorhus |
| Maintainers | sindresorhus |
| Keywords | text, regex, regexp, match, test, find, pattern, email, address, validate, check, is, string |

## Links

- npm: https://www.npmjs.com/package/is-email-like
- Repository: https://github.com/sindresorhus/is-email-like
- Homepage: https://github.com/sindresorhus/is-email-like#readme
- Issues: https://github.com/sindresorhus/is-email-like/issues
- Funding: https://github.com/sponsors/sindresorhus
- npm.io page: https://npm.io/package/is-email-like

## Dependencies (2)

- [email-regex](https://npm.io/package/email-regex.md) ^6.1.0
- [super-regex](https://npm.io/package/super-regex.md) ^1.1.0

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 3.1.0 (latest) — 2025-11-11
- 3.0.0 — 2025-11-06
- 2.0.0 — 2021-05-03
- 1.0.0 — 2016-05-07

## README

# is-email-like

> Check if a string is email like

[You shouldn't use this for validating emails.](http://davidcel.is/blog/2012/09/06/stop-validating-email-addresses-with-regex/) Only for hinting to the user.

## Install

```sh
npm install is-email-like
```

## Usage

```js
import isEmailLike from 'is-email-like';

isEmailLike('sindresorhus@gmail.com');
//=> true
```

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