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 🙏

© 2026 – Pkg Stats / Ryan Hefner

fontsy

v1.0.4

Published

Google fonts wrapper for NodeJS

Readme

Fontsy

Google Fonts wrapper for your NodeJS App

Requirement

This library require Google API Key to run, so you must be GET your own API Key on this page. After that, rename .env.example file to .env and insert your API Key to this file.

Usage

First, install Fontsy using below code :

npm install fontsy

# Or

yarn add fontsy

Next, create your Fontsy instance :

(async () => {
  const Fontsy = require('fontsy')

  const fonts = await new Fontsy()
    .sort('alpha') // default Popularity
    .font({
      'Playfair Display': ['300', '500 italic'],
      'Quicksand': ['300', '600']
    })
})()

And then, follow below instruction to show fetching data.

Get Single Link

Use fonts.link() to get single css link to Google Fonts

https://fonts.googleapis.com/css?family=Playfair+Display:300,500i|Quicksand:300,600"

Get Single Link With Tag

Use fonts.link(true) to get single css link to Google Fonts with HTML tag

<link href="https://fonts.googleapis.com/css?family=Playfair+Display:300,500i|Quicksand:300,600" rel="stylesheet">

Get CSS Class

Use fonts.css() to get css class from instance

.font-quicksand {
  font-family: 'Quicksand', sans-serif;
}
.font-playfair-display {
  font-family: 'Playfair Display', serif;
}

Get List Of Fonts

Use fonts.list() to get list of fetched fonts

[
  {
    "family": "Quicksand",
    "category": "sans-serif",
    "variants": [
      "300",
      "regular",
      "500",
      "700"
    ]
  },
  {
    "family": "Playfair Display",
    "category": "serif",
    "variants": [
      "regular",
      "italic",
      "700",
      "700italic",
      "900",
      "900italic"
    ]
  }
]

Get Instance

Just print variable fonts to show instance of Fontsy

{
  "url": "https://www.googleapis.com/webfonts/v1/webfonts",
  "key": "YOUR-API-KEY",
  "sorted": "alpha",
  "fonts": [
    "Playfair Display",
    "Quicksand" 
  ],
  "variant": [
    "300,500i",
    "300,600"
  ],
  "result": [
    {
      "kind": "webfonts#webfont",
      "family": "Quicksand",
      "category": "sans-serif",
      "variants": [
        "300",
        "regular",
        "500",
        "700"
      ],
      "subsets": [
        "vietnamese",
        "latin-ext",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2018-10-08",
      "files": {
        "300": "http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYoSA.ttf",
        "500": "http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_p2HcoSA.ttf",
        "700": "http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pkHEoSA.ttf",
        "regular": "http://fonts.gstatic.com/s/quicksand/v8/6xKtdSZaM9iE8KbpRA_RLA.ttf"
      }
    },
    {...}
  ]
}

For more info see example file

License

This project under MIT License