Skip to content

collectiveacuity/absolutify

 
 

Repository files navigation

Absolutify

Build Status devDependency Status NPM version

Replace relative URLs in a string with absolute URLs. This library is extremely small and lightweight, and requires no external dependencies.

The primary motivation of this library is to be concise and performant, when searching for this functionality, the common solution is to use actual DOM manipulation for finding and replacing URLs, using jQuery, cheerio, and/or jsdom.

Install

npm install absolutify

Usage

var absolutify = require('absolutify')

var html = '<html><a href="/sorensen">Home</a></html>'
var site = 'https://github.com'

var parsed = absolutify(html, site)
// '<html><a href="https://github.com/sorensen">Home</a></html>'

var byFunction = absolutify(html, function(url, attrName) {
  // url === '/sorensen'
  // attr === 'href'
  return site + url
})

Supported Attributes

This library searches a given HTML string for the following attribute values that start with either / or any form of ../ pathing.

Attribute
href
src
srcset
codebase
cite
background
action
profile
formaction
icon
manifest
archive
poster
longdesc
dynsrc
lowsrc
usemap

Supported Styles

Style
background
background-image
filter

License

About

Replace relative URLs with absolute in a given HTML string.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%