Socket
Book a DemoInstallSign in
Socket

absoluteify

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

absoluteify

Streamingly transform relative HTML paths to absolute urls

1.0.3
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

absoluteify Build Status

Streamingly transform relative HTML paths to absolute urls

Install

$ npm install --save absoluteify

Usage

var absoluteify = require('absoluteify')
var fs = require('fs')

fs.createReadStream('file.html')
  .pipe(absoluteify('https://github.com'))
  .pipe(process.stdout)

Input

<script src="app.js"></script>
<link href="styles.css">
<img src="photo.jpg">

Output

<script src="https://github.com/app.js"></script>
<link href="https://github.com/styles.css">
<img src="https://github.com/photo.jpg">

API

absoluteify(base) -> TransformStream

Returns a transform stream that uses trumpet to absolute-ify <script>, <link>, and <img> tags.

base

Required
Type: string

The base URL to prefix before the relative attribute URLs.

License

MIT © Ben Drucker

Keywords

stream

FAQs

Package last updated on 16 Dec 2016

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.