0.0.5-1 • Published 12 months ago

rss-url-finder v0.0.5-1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

RSS URL Finder

A javascript/typescript library to search RSS feed via URL or HTML body

Installation

⚠️ For now, is only compatible with node >=18 versions

npm install rss-url-finder
# or
pnpm install rss-url-finder
# or
yarn add rss-url-finder

How to use

import { getRssUrlsFromHtmlBody, getRssUrlsFromUrl } from 'rss-url-finder'

// If you need to search from URL
getRssUrlsFromUrl('https://cr0wg4n.medium.com/')
  .then((rssUrls) => {
    console.log(rssUrls)
  })
// Result: 
// [ 
//   { 
//     name: 'RSS', 
//     url: 'https://medium.com/feed/@cr0wg4n' 
//   } 
// ]

// If you need to search from HTML body
const rssUrls = getRssUrlsFromHtmlBody(`
<!doctype html>
<html lang="en" itemscope>
<head>
  <meta name="generator" content="Hexo 5.4.2"><link rel="alternate" href="/atom.xml" title="Dev-Academy.com - Web security | Testing & automation | Application architecture" type="application/atom+xml">
  <link rel="alternate" href="/rss2.xml" title="Dev-Academy.com - Web security | Testing & automation | Application architecture" type="application/rss+xml">
  <link rel="canonical" href="https://dev-academy.com/">
</head>
</figure>
<header>
  <div class="post-time">
    <time datetime="2022-12-22T00:00:00.000Z">22 December 2022</time>
  </div>
</header>
<body>
...... AND EXAMPLE OF HTML ...........
<script src="https://my.hellobar.com/3211232132.js" data-cookieconsent="ignore" charset="utf-8" async="async"></script>
</body>
</html>
`)
console.log(rssUrls)

// Result: 
// [
//   {
//     name: 'Dev-Academy.com - Web security | Testing & automation | Application architecture',
//     url: 'https://dev-academy.com/rss2.xml'
//   },
//   {
//     name: 'Dev-Academy.com - Web security | Testing & automation | Application architecture',
//     url: 'https://dev-academy.com/atom.xml'
//   }
// ]

Feel free to contribute to this repository

Made with ❤️ by cr0wg4n

0.0.5-1

12 months ago

0.0.5

12 months ago

0.0.4-3

1 year ago

0.0.4-2

1 year ago

0.0.4-1

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago