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

@nera-static/plugin-link-attributes

v2.0.4

Published

A plugin for static side generator Nera to add attributes to external links.

Readme

@nera-static/plugin-link-attributes

A plugin for the Nera static site generator that automatically adds attributes to external links (e.g. target="_blank" and rel="noopener noreferrer"). Ensures external links are secure, accessible, and SEO-friendly.

✨ Features

  • Automatically adds attributes to links starting with http or www
  • Prevents overwriting existing attributes
  • Uses a safe and structured HTML parser (Cheerio)
  • Configuration via config/link-attributes.yaml
  • Lightweight and zero-runtime overhead
  • Full compatibility with Nera v4.1.0+

🚀 Installation

Install the plugin in your Nera project:

npm install @nera-static/plugin-link-attributes

Then publish the default configuration:

npx @nera-static/plugin-link-attributes run publish-config

This creates:

config/
└── link-attributes.yaml

Nera will automatically detect the plugin and apply the transformations during the build.

⚙️ Configuration

Configure link behavior via config/link-attributes.yaml:

attributes:
  - target="_blank"
  - rel="noopener noreferrer"

Attribute notes

  • target="_blank": Opens external links in a new tab.
  • rel="noopener noreferrer": Improves security and prevents referrer leakage.
  • You can define any valid HTML attributes (e.g., class="external", aria-label="...").

The plugin will not overwrite existing attributes on links.

🧩 Usage

No usage setup required – all external links in rendered HTML will be automatically processed during the build. Internal links are left untouched.

Before

<a href="https://example.com">Example</a>

After

<a href="https://example.com" target="_blank" rel="noopener noreferrer">Example</a>

🧪 Development

npm install
npm test
npm run lint

Tests use Vitest and validate:

  • Attributes are added only to external links
  • Internal or malformed links are ignored
  • Existing attributes are preserved
  • Output HTML remains valid and clean

🧑‍💻 Author

Michael Becker https://github.com/seebaermichi

🔗 Links

🧩 Compatibility

  • Nera: v4.1.0+
  • Node.js: >= 18
  • Plugin API: Uses getMetaData() for HTML transformation

📦 License

MIT