https://github.com/andre487/node-linkify-lite
Linkify text with ~300B of code
https://github.com/andre487/node-linkify-lite
linkify linkify-text nodejs
Last synced: 24 days ago
JSON representation
Linkify text with ~300B of code
- Host: GitHub
- URL: https://github.com/andre487/node-linkify-lite
- Owner: andre487
- License: mit
- Created: 2017-10-24T22:39:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-18T16:22:51.000Z (12 months ago)
- Last Synced: 2025-08-09T09:57:21.630Z (6 months ago)
- Topics: linkify, linkify-text, nodejs
- Language: JavaScript
- Homepage:
- Size: 87.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-linkify-lite
Linkify text with ~300B of uncompressed code
[](https://github.com/andre487/node-linkify-lite/actions/workflows/ci.yaml)
```
npm install --save linkify-lite
```
```js
var linkify = require('linkify-lite')
var text = [
'https://ru.wikipedia.org/wiki/Lorem_ipsum',
'Lorem ipsum dolor sit amet, consectetur adipiscing elit,',
'http://ru.wikipedia.org/wiki/Lorem_ipsum',
'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
'//ru.wikipedia.org/wiki/Lorem_ipsum',
].join(' ')
linkify(text)
// > //ru.wikipedia.org/wiki/Lorem_ipsum
// > Lorem ipsum dolor sit amet, consectetur adipiscing elit,
// > //ru.wikipedia.org/wiki/Lorem_ipsum
// > sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
// > //ru.wikipedia.org/wiki/Lorem_ipsum
```