rsshub
Version:
Make RSS Great Again!
36 lines (35 loc) • 881 B
JavaScript
import { t as rofetch } from "./ofetch-U0CdpE2g.mjs";
import { t as parseDate } from "./parse-date-3kcy2Eau.mjs";
import { load } from "cheerio";
//#region lib/routes/bvisness/blog.ts
const route = {
name: "Blog",
categories: ["blog"],
maintainers: ["raxod502"],
path: "/blog",
example: "/bvisness/blog",
handler,
radar: [{
source: ["bvisness.me"],
target: "/blog"
}]
};
async function handler() {
const response = await rofetch("https://bvisness.me/");
const $ = load(response);
return {
title: "Ben Visness Blog",
link: "https://bvisness.me/",
item: $("article").toArray().map((item) => {
const $item = $(item);
const a = $item.find("a").first();
return {
title: a.text(),
link: new URL(a.attr("href"), "https://bvisness.me/").href,
pubDate: parseDate($item.find("time").attr("datetime"))
};
})
};
}
//#endregion
export { route };