This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { XMLParser } from "fast-xml-parser"; | |
import fetch from "node-fetch"; | |
const RSS_URL = "https://jakelazaroff.com/rss.xml"; | |
const ACTIVITYPUB_HOST = "https://shine-thunder-forgery.glitch.me"; | |
const OUTBOX_URL = ACTIVITYPUB_HOST + "/test/outbox"; | |
const CREATE_URL = ACTIVITYPUB_HOST + "/admin/create"; | |
const ADMIN_USERNAME = "jake"; | |
const ADMIN_PASSWORD = "test"; |