1.3.1 • Published 3 years ago

weft v1.3.1

Weekly downloads
645
License
MIT
Repository
github
Last release
3 years ago

:santa: weft

NodeJS API Wrapper for Google Web Fonts

Installation

Using NPM
npm install weft --save

Using Yarn
yarn add weft

Usage

const weft = require('weft')

// Set API Key
weft.apiKey(/* Your API_KEY here */)

// See current API Key
console.log(weft.apiKey())

// Display Google Fonts Complete List
weft.list().then(result => {
  console.log(result)
})

/**
 * Display Google Fonts With Custom Fields
 * See fields and sortBy on API section below
 */
weft.list(fields, sortBy).then(result => {
  console.log(result)
})

// View Open Sans Info
weft.view('Open Sans').then(result => {
  console.log(result)
})

/**
 * Search fonts
 * See options on API section below
 */
weft.search('monts', options).then(result => {
  console.log(result)
})

// Get font URL
console.log(weft.embedUrl('Montserrat', options))

API

Table of Contents

weft.sortBy

Constant variables of sorting list.

KeyValue
ALPHAalpha
DATEdate
SYLEstyle
TRENDINGtrending
POPULARpopularity

Example

weft.list(options, weft.sortBy.TRENDING)

weft.categories

Constant variables of categories.

KeyValue
ALLEmpty
SERIFserif
SANS_SERIFsans-serif
DISPLAYdisplay,
HANDWRITINGhandwriting
MONOSPACEmonospace

weft.apiKey (key: string = '')

Set or Get API Key. If you leave key empty, it will be used as getter.

weft.list (fields?: object = '', sortBy?: string = weft.sortBy.ALPHA)

Get Google Fonts list. The first argument fields is to see or hide result from Google Fonts API. The second argument is sorting function.

Default Fields

KeyDescriptionDefault Value
categoryFont categoryfalse
filesFile list from Google Serverfalse
familyFont Family Nametrue
lastModifiedLast modified datefalse
subsetsFont Subsetsfalse
variantsFont Variantsfalse
versionFont Versionfalse

Example

// Get font family and font variants
const yoFields = {
  category: false,
  files: false,
  family: true,
  lastModified: false,
  subsets: false,
  variants: true,
  version: false
}

weft.list(yoFields).then(result => {
  // Pssst, hey kids wanna see result?
})

weft.view (fontName: string)

View individual font information.

weft.search (query: string = '', options?: object = {})

Search font with criteria. query can be empty.

Default Options

 {
  fields: {
    // See default fields on weft.list section above
  },
  category: weft.categories.ALL,
  sortBy: weft.sortBy.TRENDING,
  subsets: {
    latin: false,
    latinExtended: false,
    sinhala: false,
    greek: false,
    hebrew: false,
    vietnamese: false,
    cyrillic: false,
    cyrillicExtended: false,
    devanagari: false,
    arabic: false,
    khmer: false,
    tamil: false,
    greekExtended: false,
    thai: false,
    bengali: false,
    gujarati: false,
    oriya: false,
    malayalam: false,
    gurmukhi: false,
    kannada: false,
    telugu: false,
    myanmar: false
  },
  variants: {
    thin: false,
    thinItalic: false,
    extraLight: false,
    extraLightItalic: false,
    light: false,
    lightItalic: false,
    regular: false,
    italic: false,
    medium: false,
    mediumItalic: false,
    semiBold: false,
    semiBoldItalic: false,
    bold: false,
    boldItalic: false,
    extraBold: false,
    extraBoldItalic: false,
    black: false,
    blackItalic: false
  }
})

weft.embedUrl (fontName: string = '', options?: object = {})

Get Google Fonts Embed URL

License

MIT © oknoorap

1.3.1

3 years ago

1.3.0

3 years ago

1.2.4

7 years ago

1.2.3

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago