// glossary

RSS

aka: Really Simple Syndication · feed

RSS is an XML format for publishing a list of recent items so feed readers and aggregators can auto-poll for updates.

RSS predates Twitter and outlives it. Feed readers (Feedly, Inoreader, NetNewsWire) poll a site's /feed.xml or /rss.xml endpoint, deduplicate against what they've seen, and surface new items.

For SEO + distribution: feed aggregators republish RSS items with backlinks to the original. dev.to has an inbound RSS auto-publish flow. Hacker News bots scrape RSS feeds for /Show HN candidates.

lrok publishes /changelog.xml and /blog/rss.xml. Both are auto-generated from data files; both are linked from <head> via <link rel=alternate type=application/rss+xml> for feed-reader auto-discovery.

// shipping?

lrok gives your localhost a public HTTPS URL with a reserved subdomain on the free plan. Useful when this term comes up in a real integration:

$ curl -fsSL https://lrok.io/install.sh | sh
$ lrok http 3000

← all glossary terms