html-prefixer

0.2.0 • Public • Published

html-prefixer

Build Status NPM version Dependency Status Bitdeli Badge

Prefix URLs in <script>/<link>/<img> with a cdn URL

Usage

var prefixer = require("html-prefixer");
 
prefixr(stream, { prefix : "//abcdefg123.cloudfront.net" }, function(err, text) {
    if(err) {
        throw new Error(err);
    }
    
    console.log(text.toString("utf8"));
});

API

prefixer(stream, [options], cb)

  • stream {Stream} Readable stream to parse
  • options {Object}
  • cb {Function}
    • err {Error | null}
    • text {Buffer} Rewritten text

Options

  • prefix {String} URL used to prefix elements.

A Note on Versioning

This project's version number currently has a "0.x" prefix, indicating that it's a new project under heavy development. As long as the version number starts with "0.x", minor revisions may introduce breaking changes. You've been warned!

Once it reaches version 1.0.0, it will adhere strictly to SemVer 2.0.

/html-prefixer/

    Package Sidebar

    Install

    npm i html-prefixer

    Weekly Downloads

    2

    Version

    0.2.0

    License

    MIT

    Last publish

    Collaborators

    • tivac