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 🙏

© 2026 – Pkg Stats / Ryan Hefner

remark-unlink-protocols

v1.0.0

Published

remark plugin to remove links and references based on their protocol

Downloads

50,932

Readme

remark-unlink-protocols

REUSE status

remark plugin to turn links into plain text based on their protocols.

Contents

What is this?

This package is a unified (remark) plugin to remove all links that use other protocols than the ones specified (http and https by default).

When should I use this?

This project is useful if you want to limit the protocols that can be linked to when processing markdown.

Install

This package is ESM only. In Node.js (version 16+), install with npm:

npm install remark-unlink-protocols

Use

Say we have the following file example.md and apply remark-unlink-protocols with the default protocols (http and https).

# Uranus

**Uranus** is the seventh [planet](/wiki/Planet 'Planet') from the Sun and is a
gaseous cyan [ice giant](/wiki/Ice_giant 'Ice giant').

Photograph of Uranus in true colour by Voyager 2 in 1986:

![This is an image of the planet Uranus taken by the spacecraft Voyager 2 in 1986.
The Voyager project is managed for NASA by the Jet Propulsion Laboratory.](<https://en.wikipedia.org/wiki/Uranus#/media/File:Uranus_as_seen_by_NASA's_Voyager_2_(remastered)_-_JPEG_converted.jpg>)

Send comments to [me](mailto:[email protected])

…and a module example.js:

import {remark} from 'remark'
import remarkUnlinkProtocols from 'remark-unlink-protocols'
import {read} from 'to-vfile'

const file = await remark()
  .use(remarkUnlinkProtocols, { except: 'mailto' })
  .process(await read('example.md'))

console.log(String(file))

…then running node example.js yields:

# Uranus

**Uranus** is the seventh planet from the Sun and is a
gaseous cyan ice giant.

Photograph of Uranus in true colour by Voyager 2 in 1986:

![This is an image of the planet Uranus taken by the spacecraft Voyager 2 in 1986.
The Voyager project is managed for NASA by the Jet Propulsion Laboratory.](<https://en.wikipedia.org/wiki/Uranus#/media/File:Uranus_as_seen_by_NASA's_Voyager_2_(remastered)_-_JPEG_converted.jpg>)

The Voyager project is managed for NASA by the Jet Propulsion
Laboratory.

Send comments to [me](mailto:[email protected]).

API

This package exports no identifiers. The default export is remarkUnlinkProtocols.

unified().use(remarkUnlinkProtocols)

Remove all links and references that do not use the http or https protocols.

Parameters

except: string[] - protocols to keep - ['http', 'https'] by default.

Returns

Transform (Transformer).

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

The current release, remark-unlink-protocols@^1 is compatible with Node.js 22.

This plugin works with unified version 3+ and remark version 4+.

Security

Use of remark-unlink-protocols does not involve rehype (hast) or user content so there are no openings for cross-site scripting (XSS) attacks.

Contribute

Nextcloud and Remarkjs have a code of conduct. By interacting with the respective repositories, organization, or community you agree to abide by its terms.

License

MIT © 2025 Nextcloud GmbH and Nextcloud contributors