Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
sitemap-getter
Advanced tools
Yes, another parser. But unlike the others, it returns the entire information from the sitemap, not only the list of URLs.
npm install sitemap-getter --save
import SitemapGetter from 'sitemap-getter';
const stream = await SitemapGetter.createStreamLocations(`https://your-website.com/sitemap.xml`);
stream.on('data', (loc) => {
console.dir(loc);
});
Note that the result stream works in object mode
, so you will need to make a transform stream to be able to .pipe()
it to something like process.stdout
Result:
{ loc: 'https://foreignsky.ru/' }
{ loc: 'https://foreignsky.ru/pzwfCkCN2KmjRRERX',
lastmod: 2017-07-09T22:00:00.000Z }
{ loc: 'https://foreignsky.ru/wNppu4ncxfS2fQ6to',
lastmod: 2017-12-20T18:28:53.000Z }
import SitemapGetter from 'sitemap-getter';
const data = await SitemapGetter.getLocations(`https://your-website.com/sitemap.xml`);
console.dir(data);
Result:
[ { loc: 'https://your-website.com/' },
{ loc: 'https://your-website.com/pzwfCkCN2KmjRRERX',
lastmod: 2017-07-09T22:00:00.000Z },
{ loc: 'https://your-website.com/wNppu4ncxfS2fQ6to',
lastmod: 2017-12-20T18:28:53.000Z } ]
Feel free to make some PRs and\or forks.
Enjoy!
FAQs
Fetch sitemap entirely or using streams
We found that sitemap-getter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.