1.0.5 • Published 2 years ago

html-link-extractor v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

html-link-extractor

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