Giter Site home page Giter Site logo

fontsy's Introduction

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

fontsy's People

Contributors

muhibbudins avatar renovate-bot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

fontsy's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

npm
package.json
  • babel-cli ^6.26.0
  • babel-preset-env ^1.7.0
  • babel-preset-stage-2 ^6.24.1
  • dotenv ^8.0.0
  • node-fetch ^2.2.0

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.