# linkifyjs

> Find URLs, email addresses, #hashtags and @mentions in plain-text strings, then convert them into HTML links.

Latest version **4.3.3** (published 2026-05-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install linkifyjs
pnpm add linkifyjs
yarn add linkifyjs
bun add linkifyjs
```

## Health

**Score 68/100 (B)** — status: active.

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

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 4.3.3 |
| Published | 2026-05-13 |
| First published | 2015-03-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/linkifyjs) |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 253.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 2039 |
| Author | Nick Frasser |
| Maintainers | nfrasser |
| Keywords | autolink, email, hashtag, html, jquery, link, mention, react, twitter, url |

## Links

- npm: https://www.npmjs.com/package/linkifyjs
- Repository: https://github.com/nfrasser/linkifyjs
- Homepage: https://linkify.js.org
- Issues: https://github.com/nfrasser/linkifyjs/issues
- npm.io page: https://npm.io/package/linkifyjs

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 4.3.3 (latest) — 2026-05-13
- 4.0.0-beta.6 (beta) — 2022-09-18
- 4.3.2 — 2025-07-25
- 4.3.1 — 2025-05-08
- 4.3.0 — 2025-05-07
- 4.2.0 — 2024-12-04
- 4.1.4 — 2024-11-19
- 4.1.3 — 2023-11-22
- 4.1.2 — 2023-11-09
- 4.1.1 — 2023-03-25
- 4.1.0 — 2023-01-04
- 4.0.2 — 2022-10-02
- 4.0.1 — 2022-09-29
- 4.0.0 — 2022-09-19
- 4.0.0-beta.5 — 2022-04-23
- … 40 more at https://npm.io/package/linkifyjs/versions

## README

# linkifyjs

[![npm version](https://badge.fury.io/js/linkifyjs.svg)](https://www.npmjs.com/package/linkifyjs)

Core [Linkify](https://linkify.js.org/) JavaScript library. Use Linkify and its
related packages to detect URLs, email addresses and more in plain-text strings and convert them to HTML `<a>` anchor tags.

## Installation

Install from the command line with NPM

```
npm install linkifyjs
```

Import into your JavaScript with `require`

```js
const linkify = require('linkifyjs');
```

or with ES modules

```js
import * as linkify from 'linkifyjs';
```

Separate packages are available for each of the following features:

- [HTML strings](../linkify-html)
- [React component](../linkify-react)
- [jQuery plugin](../linkify-jquery)
- [DOM Elements](../linkify-element)
- [Plain-text](../linkify-string)
- [#hashtag plugin](../linkify-plugin-hashtag)
- [@mention plugin](../linkify-plugin-mention)
- [#ticket plugin](../linkify-plugin-ticket)
- [IP address plugin](../linkify-plugin-ip)
- [Keyword plugin](../linkify-plugin-keyword)

## Usage

[Read the full documentation](https://linkify.js.org/docs/linkifyjs.html).

## License

MIT

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