relatt-scraper
Version:
Metascarper
25 lines (22 loc) • 615 B
JavaScript
const { metascrape } = require("./modules/processLink");
const {
checkRssUrl,
checkWpJsonAPI,
isUrlGivenRssFeed,
crawlPage,
} = require("./modules/checkFeedURL");
const { partitionLink } = require("./modules/partitionLink");
const { analyzeSubdomain } = require("./modules/analyzeSubdomain");
const { verifySubdomain } = require("./modules/subdomainCheck");
const { processLinkImage } = require("./modules/processLinkImage");
module.exports = {
metascrape,
checkRssUrl,
checkWpJsonAPI,
partitionLink,
analyzeSubdomain,
isUrlGivenRssFeed,
verifySubdomain,
processLinkImage,
crawlPage,
};