sitemap-links

Crawl and parse links in sitemap recursively.

Usage no npm install needed!

<script type="module">
  import sitemapLinks from 'https://cdn.skypack.dev/sitemap-links';
</script>

README

Sitemap links

Crawl and parse links in sitemap recursively.

Installation

npm install sitemap-links

Usage

const get_sitemap_links = require('sitemap-links');

get_sitemap_links('https://example.com/sitemap_index.xml')
  .then(urls => console.log(urls))
  .catch(e => console.log(e));

With timeout (default 60s)

const get_sitemap_links = require('sitemap-links');

// 10s timeout
get_sitemap_links('https://example.com/sitemap_index.xml', 10000)
  .then(urls => console.log(urls))
  .catch(e => console.log(e));