Socket
Book a DemoInstallSign in
Socket

wf-htmlrewriter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wf-htmlrewriter

Use Cloudflare HTMLRewriter in Node.js, Browser, Next.js and more

latest
Source
npmnpm
Version
0.0.13
Version published
Weekly downloads
1.1K
-82.02%
Maintainers
1
Weekly downloads
 
Created
Source

Note: this is a temporary fork of htmlrewriter that fixes utf8/emoji crashes. Source: https://github.com/anfibiacreativa/htmlrewriter/tree/fix-emoji-crash




htmlrewriter



Cloudflare HTMLRewriter packaged to work with

  • Node.js (reading the wasm from file system)
  • Next.js (appending ?module to wasm imports)
  • browser (fetching the wasm file at runtime)
  • Deno (fetching the wasm file at runtime with file:// protocol)
  • Bun & Cloudflare (simply using the global HTMLRewriter object)

Install

npm i htmlrewriter

Usage

import { HTMLRewriter } from 'htmlrewriter'

const rewriter = new HTMLRewriter()

rewriter.on('a', {
    element(element) {
        element.setAttribute('href', 'https://www.baidu.com')
    },
})
const res = rewriter.transform(
    new Response('<a href="https://www.google.com">google</a>'),
)
console.log(await res.text())

License

html-rewriter-wasm uses lol-html which is BSD 3-Clause licensed:

Copyright (C) 2019, Cloudflare, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Keywords

cloudflare

FAQs

Package last updated on 10 Mar 2025

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