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

inject-webfontloader

v1.1.4

Published

Injects WebFontLoader with support for Adobe Edge Web Fonts/Typekit, Fontdeck, Fonts.com (Monotype), Google Fonts, and custom fonts.

Downloads

19

Readme

Inject Web Font Loader

Visit this page for more information and in-depth documentation for the WebFontLoader API

Information

Usage

Install

$ npm i --save-dev inject-webfontloader

Modules and Examples

Adobe Edge Web Fonts

When using Adobe Edge Web Fonts, you can use the typekit module by passing in a catenated list of fonts in the id parameter and set the api parameter to point to the Edge Web Fonts URL. More info

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "typekit",
                                    id: 'adamina;advent-pro',
                                    api: '//use.edgefonts.net'}))
               .pipe(gulp.dest("./"));

}

Fontdeck

To use the Fontdeck module, specify the ID of your website. You can find this ID on the website page within your account settings. More info

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "fontdeck",
                                    id: 'xxxxxx'}))
               .pipe(gulp.dest("./"));

}

Fonts.com (Monotype)

When using Fonts.com web fonts specify your Project ID. More info

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "monotype",
                                    id: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
                                    version: 12345, // Flushes the CDN cache (optional).
                                    loadAllFonts: true })) // Loads all project fonts (optional).
                                    }))
               .pipe(gulp.dest("./"));

}

Google Fonts

Using Google's Font API, name the font families you'd like to load. You can use the same syntax as in the Font API to specify styles. Please note that the Google module does not support the FVD syntax that is used in the custom module. More info

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "googlefonts",
                                    families: ['Droid Sans', 'Droid:bold']}))
               .pipe(gulp.dest("./"));

}

Sometimes the font you requested doesn't come in the default weight (e.g. 400) and you need to explicitly request the variation you want for font events to work (e.g. 300, 700, etc.):

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "googlefonts",
                                    families: ['Open Sans Condensed:300,700']}))
               .pipe(gulp.dest("./"));

}

If you need to specify character subsets other than the default (e.g.: greek script in addition to latin), you must append the subset string to the requested family string after a colon. The subset string should follow the Google documentation (subset names separated by commas):

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "googlefonts",
                                    families: ['Open Sans Condensed:300,700:latin,greek']}))
               .pipe(gulp.dest("./"));

}

Typekit

When using Typekit, specify the Kit to retrieve by its ID. You can find the Kit ID within Typekit's Kit Editor interface. More info

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({source: "typekit",
                                    id: 'xxxxxx'}))
               .pipe(gulp.dest("./"));

}

Custom Fonts

To load fonts from any external stylesheet, use the custom module. Here you'll need to specify the font family names you're trying to load, and optionally the url of the stylesheet that provides the @font-face declarations for those fonts.

You can specify a specific font variation or set of variations to load and watch by appending the variations separated by commas to the family name separated by a colon. Variations are specified using FVD notation. More info

import gulp from "gulp";
import webfontloader from "inject-webfontloader";

export function injectwebfontloader() {
    
    return gulp.src("**/*.html")
               .pipe(webfontloader({families: ['My Font', 'My Other Font:n4,i4,n7'],
                                    urls: ['/fonts.css']}))
               .pipe(gulp.dest("./"));

}

In this example, the fonts.css file might look something like this:

@font-face {
    font-family: 'My Font';
    src: ...;
}
@font-face {
    font-family: 'My Other Font';
    font-style: normal;
    font-weight: normal; /* or 400 */
    src: ...;
}
@font-face {
    font-family: 'My Other Font';
    font-style: italic;
    font-weight: normal; /* or 400 */
    src: ...;
}
@font-face {
    font-family: 'My Other Font';
    font-style: normal;
    font-weight: bold; /* or 700 */
    src: ...;
}

If your fonts are already included in another stylesheet you can also leave out the urls array and just specify font family names to start font loading. As long as the names match those that are declared in the families array, the proper loading classes will be applied to the html element.

@font-face {
    font-family:"My Font";
    src:url("assets/fonts/my_font.woff") format("woff");
}

Options

classes

It is possible to disable setting classes on the HTML element by setting the classes configuration parameter to false. More info

Type: `Boolean`
Default: `true`

Example:

.pipe(webfontloader({ classes: false }))

events

You can also disable font events (callbacks) by setting the events parameter to false. More info

Type: `Boolean`
Default: `true`

Example:

.pipe(webfontloader({ events: false }))

context

Usually, it's easiest to include a copy of Web Font Loader in every window where fonts are needed, so that each window manages its own fonts. However, if you need to have a single window manage fonts for multiple same-origin child windows or iframes that are built up using JavaScript, Web Font Loader supports that as well. Just use the optional context configuration option and give it a reference to the target window for loading. More info

Type: `String`

Example:

.pipe(webfontloader({ context: 'my-child' }))

timeout

Since the Internet is not 100% reliable, it's possible that a font will fail to load. The fontinactive event will be triggered after 5 seconds if the font fails to render. If at least one font successfully renders, the active event will be triggered, else the inactive event will be triggered.

You can change the default timeout by using the timeout option on the WebFontConfig object. More info

Type: `Number`
Default: `5000`

Example:

.pipe(webfontloader({ timeout: 2000 }))

LICENSE

(MIT License)

Copyright (c) 2018 Aries Datuin [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.