be-based
TypeScript icon, indicating that this package has built-in type declarations

0.0.62 • Public • Published

be-based [WIP]

be-based is a package that allows a DOM document fragment filled with relative URL paths, to be adjusted based on a base URL. This is quite critical when streaming HTML from a third-party element to a DOM node contained within the Live DOM tree. be-based plays a critical role in combination with be-written.

NPM version How big is this package in your project? Playwright Tests

The syntax:

<div be-based="https://www.supremecourt.gov/about/">
    <a href="biographies.aspx#SOConnor">O'Connor, Sandra Day</a>
<div>

is shorthand for:

<div be-based='{
    "base": "https://www.supremecourt.gov/about/",
    "forAll": ["href", "src", "xlink:href"]
}'>
    <a href="biographies.aspx#SOConnor">O'Connor, Sandra Day</a>
</div>

be-based rewrites the attribute within:

<div is-based="https://www.supremecourt.gov/about/">
    <a href="https://www.supremecourt.gov/about/biographies.aspx#SOConnor">O'Connor, Sandra Day</a>
</div>

As a custom attribute / decorator / behavior

be-based is one of a growing family of be-hive/be-enhanced web component based custom attributes / behaviors / decorators / directives.

By referencing behivior.js, elements with attribute be-based will be discovered and transformed.

If using stream-orator to stream HTML to a target element, be-based can be used to watch all new elements, and apply all the rules as they are discovered.

This seems to work quite well with Chromium based browsers running on windows (rewriting image url's before the browser tries the original, invalid url), but isn't so effective with Firefox.

Update: Well, on Chromium based browsers, it doesn't seem so reliable either, at least depending on when I try.

As a cloudflare HTMLRewriter Class [TODO]

As a service worker helper [TODO]

W3C willing.

Package Sidebar

Install

npm i be-based

Weekly Downloads

147

Version

0.0.62

License

MIT

Unpacked Size

8.48 kB

Total Files

7

Last publish

Collaborators

  • bahrus