npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webfeed-follow

v1.0.10

Published

Tools for following webfeeds from browsers.

Downloads

3

Readme

Webfeed-Follow

This library creates and converts HTML anchor elements into into click-to-follow buttons, that cause a redirection to the Webfeed reader installed on the user's device (at this point, that reader must be Squares).

Installation

Add this library to your website with the following snippet:

<script src="https://cdn.jsdelivr.net/npm/webfeed-follow/min.js"></script>

Usage (Static)

Add the data-webfeed-href attribute to any links that should be converted into click-to-follow buttons:

<a data-webfeed-href="/path/to/webfeed/index.txt">Follow my Webfeed!</a>

The value specified in the data-webfeed-href may be relative to the current page, or it may be an absolute URL.

Usage (Dynamic)

If you'd like to dynamically create click-to-follow links, this library has a minimal API for doing so. The functions are as follows. See the VS Code links

WebfeedFollow.createAnchor(...webfeedUrls: string[])

Creates an empty tag that when clicked, causes a redirection to the installed webfeed reader (which at this point has to be Squares), and instructs the webfeed reader to follow the specified webfeed URLs.

convertAnchor(anchor: HTMLAnchorElement, ...webfeedUrls: string[])

Converts an existing anchor to a a clickable webfeed-follow link. If no webfeedUrls are provided, or the specified anchor does not have a data-webfeed-href attribute, the anchor is returned without modification.

go(...webfeedUrls: string[])

Triggers a redirection of the browser window to the installed webfeed reader (which at this point has to be Squares), and instructs the webfeed reader to follow the specified webfeed URLs.

How This Works

At this point, the links created by this library are iOS Universal Links / Android AppLinks which redirect the user to the Squares app, or to the app store to download Squares if it's not installed. This really sucks. If Webfeeds are to become an adopted standard, there needs to be multiple Webfeed readers, and the follow links that exist all over the internet need to use an open URI scheme, such as webfeed://..., so that any webfeed reader installed on the device can receive the request.

However, on iOS or Android, it's not possible to determine if an app is installed on the users device that can handle a given URI scheme. This is necessary in order to know when to redirect the user to the appropriate app store so that the user can download a webfeed reader.

A previous version of this library opted for this "eventual open standard" design, but it resulted in a user experience we found to be unacceptable. If Webfeeds are to become a viable alternative to mainstream social media, the follow-from-web experience needs to be best-in-class. RSS didn't deliver in this area and it was disasterous for it's adoption. We must be careful not to repeat these mistakes.

Before clicking on the link, the URLs to follow are first copied to the clipboard. Squares checks the clipboard for URLs to follow when it gains the focus. This may seem a bit brittle, but the clipboard mime type used is text/uri-list for Safari and web text/uri-list for other browsers, so clipboard overwrites should be uncommon.