npm.io
1.0.5 • Published 4 years ago

html-link-extractor

Licence
MIT
Version
1.0.5
Deps
1
Size
4 kB
Vulns
0
Weekly
0
Stars
1

Extracts links from html texts.

Installation

$ npm install --save html-link-extractor

API

htmlLinkExtractor(html)

Parameters:

  • html text in html format.

Returns:

  • an array of URLs

Examples

const { readFileSync } = require('fs');
const htmlLinkExtractor = require('html-link-extractor');

const html = readFileSync('index.html', {encoding: 'utf8'});

const links = htmlLinkExtractor(html);
links.forEach(link => console.log(link));

Testing

npm test

License

See LICENSE.md

Keywords