New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

feedcanon

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feedcanon

Find the canonical URL for any web feed by comparing actual content. Turn messy feed URLs into their cleanest form.

latest
Source
npmnpm
Version
1.5.0
Version published
Maintainers
1
Created
Source

Feedcanon

codecov npm version license

Find the canonical URL for any web feed by comparing actual content. Turn messy feed URLs into their cleanest form.

Many URLs can point to the same feed, varying by protocol, www prefixes, trailing slashes, order of params, or domain aliases. Feedcanon compares actual feed content, respects the feed's declared self URL, and tests simpler URL alternatives to find the cleanest working one.

Perfect for feed readers to deduplicate subscriptions when users add the same feed via different URLs.

Read full docs ↗   ·   Quick Start

Example

The 9 URLs below all work and return identical content. None redirect to each other, normally making each appear unique. Feedcanon compares content, normalizes URLs and resolves them to a single URL.

'http://feeds.kottke.org/main' ──────────┐
'http://feeds.kottke.org/main/' ─────────┤
'https://feeds.kottke.org/main' ─────────┤
'https://feeds.kottke.org/main/' ────────┤
'https://feeds.kottke.org///main/' ──────┼──→ 'https://feeds.kottke.org/main'
'http://feeds.feedburner.com/kottke' ────┤
'http://feeds.feedburner.com/kottke/' ───┤
'https://feeds.feedburner.com/kottke' ───┤
'https://feeds.feedburner.com/kottke/' ──┘

Overview

How It Works

This is a simplified flow. For complete details, see How It Works in the docs.

  • Fetch the input URL and parse the feed to establish reference content.
  • Extract the feed's declared self URL (if present).
  • Validate the self URL by fetching and comparing content.
  • Generate URL candidates ordered from cleanest to least clean.
  • Test candidates in order—the first one serving identical content wins.
  • Upgrade HTTP to HTTPS if both serve identical content.

Customization

Feedcanon is designed to be flexible. Every major component can be replaced or extended.

  • Progress callbacks — monitor the process with onFetch, onMatch, and onExists callbacks.
  • Database lookup — use existsFn to check if a URL already exists in your database.
  • Custom fetch — use your own HTTP client (Axios, Got, Ky, etc.)
  • Custom parser — bring your own parser (Feedsmith by default).
  • Custom tiers — define your own URL normalization tiers.
  • Custom rewrites — add rewrites to normalize domain aliases (like FeedBurner).

Quick Start

Basic installation and common usage patterns. For a full overview, visit the documentation website.

Installation

npm install feedcanon

Basic Usage

When you just need to clean up a feed URL and get its canonical form.

import { findCanonical } from 'feedcanon'

const url = await findCanonical('http://www.example.com/feed/?utm_source=twitter')

// 'https://example.com/feed'

Returns undefined if the feed is invalid or unreachable.

Using Callbacks

When you want to log the canonicalization process for debugging. Or store all URL aliases that resolve to the same feed.

import { findCanonical } from 'feedcanon'

const aliases = []

const url = await findCanonical('http://www.example.com/feed/', {
  onMatch: ({ url }) => {
    aliases.push(url)
  },
})

// url: 'https://example.com/feed'
// aliases: [
//   'http://www.example.com/feed/',
//   'https://www.example.com/feed/',
//   'https://example.com/feed',
// ]

Keywords

rss

FAQs

Package last updated on 03 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts