Check URLs are reachable in text.
$ npm install --save reachable-urls
Usage
$ reachable-urls [<file|glob> ...]
Options
--compact Show only not-reachable URLs
--help Show help
--silent Exit with success always
--stdin Check string from stdin
--version Show version
const assert = require('assert');
const reachableUrls = require('reachable-urls');
reachableUrls('https://foobarbaz.com https://github.com').then(result => {
assert.deepEqual(result, {
'https://github.com': true,
'https://foobarbaz.com': false
});
});