npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

base64-injector

v0.1.2

Published

Convert font/image to base64 data url, and to inject src into style/html files

Downloads

13

Readme

base64-injector

NPM version Dependency Status License: MIT

Convert font/image to base64 data url, and to inject src into style/html files

Installation

$ npm install base64-injector

API

.encodeToDataUrl (sourcePath)

  • Convert font/image file(s) to base64 data url asynchronously
  • sourcePath: {string} | {Array{string}}
    • file path(s)
  • Returns: {Promise} containing {string} | {Array{string}}
const dataUrl = await base64Injector.encodeToDataUrl('fonts/myfont-regular.ttf')
// => data:font/truetype;charset=utf-8;base64,<base64>

.encodeToDataUrlSync (sourcePath)

  • Convert font/image file(s) to base64 data url synchronously
  • sourcePath: {string} | {Array{string}}
    • file path(s)
  • Returns: {string} | {Array{string}}
const dataUrl = base64Injector.encodeToDataUrlSync('fonts/myfont-regular.woff')
// => data:application/font-woff;charset=utf-8;base64,<base64>

.encodeToDataSrc (sourcePath)

  • Convert font/image file(s) to base64 data src asynchronously
  • sourcePath: {string} | {Array{string}}
  • Returns: {Promise} containing {string} | {Array{string}}
const dataSrc = await base64Injector.encodeToDataSrc('images/apple.png')
// => url(data:image/png;base64,<base64>)

.encodeToDataSrcSync (sourcePath)

  • Convert font/image file(s) to base64 data src synchronously
  • sourcePath: {string} | {Array{string}}
  • Returns: {string} | {Array{string}}
const dataSrc = base64Injector.encodeToDataSrcSync('images/pear.png')
// ==> url(data:image/png;base64,<base64>)

.encodeToFontDataSrc (sourcePath)

  • Convert font/image file(s) to base64 font data src asynchronously
  • sourcePath: {string} | {Array{string}}
  • Returns: {Promise} containing {string} | {Array{string}}
const dataSrc = await base64Injector.encodeToFontDataSrc('fonts/myfont-regular.ttf')
// => url(data:font/truetype;charset=utf-8;base64,<base64>) format('truetype')

.encodeToFontDataSrcSync (sourcePath)

  • Convert font/image file(s) to base64 font data src synchronously
  • sourcePath: {string} | {Array{string}}
  • Returns: {string} | {Array{string}}
const dataSrc = base64Injector.encodeToFontDataSrcSync('fonts/myfont-regular.woff')
// => url(data:application/font-woff;charset=utf-8;base64,<base64>) format('woff')

.injectBase64 (sourcePath, targetPath[, options])

  • Replace font/image src url with base64 data url asynchronously
  • sourcePath: {string} | {Array{string}}
  • targetPath: {string} | {Array{string}}
  • options: {Object}
    • validator: {Function}: (abs|base_source_url, abs|base_source_path, original_source_url, original_source_path) => boolean
      • check if font/image url in style/html file matches to source file's basename
      • default to comparing both paths' basenames
    • sourceTypes: {Array{string}}
      • allowed source types
      • default to all font/image types
    • targetTypes: {Array{string}}
      • allowed target types
      • default to ['.css', '.html']
    • resave: {boolean}
      • resave modified target files
      • default to true
  • Returns: {Promise} containing {true | Error} | {result | Error}
const result = await base64Injector.injectBase64('./fonts', './styles')
// => true

const result = await base64Injector.injectBase64('./images', './styles', { resave: false })
// => { n: 3, nModified: 2, contents: [{ modified: true, filepath: './styles/style1.css', content: '...' }, ...] }

.injectBase64Sync (sourcePath, targetPath[, options])

  • Replace font/image src url with base64 data url synchronously
  • sourcePath: {string} | {Array{string}}
  • targetPath: {string} | {Array{string}}
  • options: {Object}
    • validator: {Function}: (abs|base_source_url, abs|base_source_path, original_source_url, original_source_path) => boolean
      • check if font/image url in style/html file matches to source file's basename
      • default to comparing both paths' basenames
    • sourceTypes: {Array{string}}
      • allowed source types
      • default to all font/image types
    • targetTypes: {Array{string}}
      • allowed target types
      • default to ['.css', '.html']
    • resave: {boolean}
      • resave modified target files
      • default to true
  • Returns: {true | Error} | {result | Error}
const result = base64Injector.injectBase64('./fonts', './styles')
// => true

const result = base64Injector.injectBase64('./images', './styles', { resave: false })
// => { n: 3, nModified: 2, contents: [{ modified: true, filepath: './styles/style1.css', content: '...' }, ...] }

.injectBase64.fromCSS (sourcePath, css[, options])

  • Replace font/image url(s) in css with base64 data url asynchronously
  • sourcePath: {string} | {Array{string}}
  • css: {string | Buffer}
    • file content | buffer
  • options: {Object}
    • validator: {Function}: (abs|base_source_url, abs|base_source_path, original_source_url, original_source_path) => boolean
      • check if font/image url in css matches to source file's basename
      • default to comparing both paths' basenames
    • sourceTypes: {Array{string}}
      • allowed source types
      • default to all font/image types
  • Returns: {Promise} containing {result | Error}
const result = await base64Injector.injectBase64.fromCSS('./fonts', '...@font-face {...')
// => { modified: false, content: '...', nFont: 0, nImage: 0 }

.injectBase64Sync.fromCSS (sourcePath, css[, options])

  • Replace font/image url(s) in css with base64 data url synchronously
  • sourcePath: {string} | {Array{string}}
  • css: {string | Buffer}
    • file content | buffer
  • options: {Object}
    • validator: {Function}: (abs|base_source_url, abs|base_source_path, original_source_url, original_source_path) => boolean
      • check if font/image url in css matches to source file's basename
      • default to comparing both paths' basenames
    • sourceTypes: {Array{string}}
      • allowed source types
      • default to all font/image types
  • Returns: {result | Error}
const result = base64Injector.injectBase64.fromCSS('./fonts', '...@font-face {...')
// => { modified: false, content: '...', nFont: 0, nImage: 0 }

.injectBase64.fromHTML (sourcePath, html[, options])

  • Replace font/image url(s) in html with base64 data url asynchronously
  • sourcePath: {string} | {Array{string}}
  • html: {string | Buffer}
    • file content | buffer
  • options: {Object}
    • validator: {Function}: (abs|base_source_url, abs|base_source_path, original_source_url, original_source_path) => boolean
      • check if font/image url in html matches to source file's basename
      • default to comparing both paths' basenames
    • sourceTypes: {Array{string}}
      • allowed source types
      • default to all font/image types
  • Returns: {Promise} containing {result | Error}
const result = await base64Injector.injectBase64.fromHTML('./images', '...<body><img src="apple.png"...</body>')
// => { modified: true, content: '...', nFont: 0, nImage: 1 }

.injectBase64Sync.fromHTML (sourcePath, html[, options])

  • Replace font/image url(s) in html with base64 data url synchronously
  • sourcePath: {string} | {Array{string}}
  • html: {string | Buffer}
    • file content | buffer
  • options: {Object}
    • validator: {Function}: (abs|base_source_url, abs|base_source_path, original_source_url, original_source_path) => boolean
      • check if font/image url in html matches to source file's basename
      • default to comparing both paths' basenames
    • sourceTypes: {Array{string}}
      • allowed source types
      • default to all font/image types
  • Returns: {result | Error}
const result = base64Injector.injectBase64.fromHTML('./images', '...<body><img src="apple.png"...</body>')
// => { modified: false, content: '...', nFont: 0, nImage: 0 }

SCOPE

  • You can simply limit the scope of source types in a sub-context.
    • It is useful when passing a directory path as the source.
  • All possible font types are ['.svg', '.ttf', '.otf', '.eot', '.sfnt', '.woff2', '.woff']
  • All possible image types are ['.apng', '.bmp', '.gif', '.ico', '.cur', '.jpg', '.jpeg', '.jfif', '.pjpeg', '.pjp', '.png', '.svg', '.tif', '.tiff', '.webp']

base64Injector

  • default to all font types + all image types
await base64Injector.encodeToDataUrl(...)

base64Injector.font

  • default to all font types
await base64Injector.font.encodeToDataSrc(...)

base64Injector.image

  • default to all image types
await base64Injector.image.injectBase64(...)

MIT Licensed