font-finder
Quickly find system font names and metadata without native dependencies
Last updated 7 years ago by princjef .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install font-finder 
SYNC missed versions from official npm registry.

font-finder

Travis CI build status codecov npm version

Quickly find system font names and metadata without native dependencies.

npm install font-finder

Usage

const fontFinder = require('font-finder');

(async () => {
  console.log(await fontFinder.list());
  // {
  //   Calibri: [
  //     {
  //       path: 'C:/WINDOWS/Fonts/calibri.ttf',
  //       type: 'sansSerif',
  //       weight: 400,
  //       style: 'regular'
  //     },
  //     {
  //       path: 'C:/WINDOWS/Fonts/calibrii.ttf',
  //       type: 'sansSerif',
  //       weight: 400,
  //       style: 'italic'
  //     },
  //     ...
  //   ],
  //   'Courier New': [
  //     {
  //       path: 'C:/WINDOWS/Fonts/courbi.ttf',
  //       type: 'monospace',
  //       weight: 700,
  //       style: 'boldItalic'
  //     },
  //     ...
  //   ],
  //   ...
  // }

  console.log(await fontFinder.listVariants('Calibri'));
  // [
  //   {
  //     path: 'C:/WINDOWS/Fonts/calibri.ttf',
  //     type: 'sansSerif',
  //     weight: 400,
  //     style: 'regular'
  //   },
  //   {
  //     path: 'C:/WINDOWS/Fonts/calibrii.ttf',
  //     type: 'sansSerif',
  //     weight: 400,
  //     style: 'italic'
  //   },
  //   ...
  // ]

  console.log(await fontFinder.get('C:/WINDOWS/Fonts/calibri.ttf'));
  // {
  //   name: 'Calibri',
  //   path: 'C:/WINDOWS/Fonts/calibri.ttf',
  //   type: 'sansSerif',
  //   weight: 400,
  //   style: 'regular'
  // }

})();

API

list([options])

Lists all fonts present on the system, grouped by font name. Currently limited to ttf and otf fonts. Returns an object where the keys are the font family names and the values are arrays of metadata for each font variant.

Params

  • options [object] - Options for configuring font retrieval
    • language [string] - The language to use when fetching font naming information. Default: 'en'
    • concurrency [string[]] - Maximum number of fonts to process concurently. You can tweak this to get the maximum performance out of the call. Default: 4

listVariants(name, [options])

Lists all variants found for the provided font family. The format of each variant is the same as for each variant in the list() call. If no variants are found, an empty array is returned.

Params

  • name [string] - The font family name to search for
  • options [object] - Same as for list()

get(path, [options])

Gets metadata for a single font file, returning metadata for the first font variant found in the file. If there is an error extracting the font, an error is thrown (unlike in list, where the font is simply ignored). Returns data for a single font variant. The format is the same as for a single variant in list() and listVariants(), but also includes the font's name.

  • path [string] - Absolute path to the font file to parse
  • options [object] - Options for configuring font retrieval
    • language [string] - The language to use when fetching font naming information. Default: 'en'

Contributing

Want to contribute to the project? Go check out the Contribution Guide for instructions to set up your development environment, open an issue and create a pull request.

Current Tags

  • 1.1.0                                ...           latest (4 years ago)

7 Versions

  • 1.1.0                                ...           4 years ago
  • 1.0.5                                ...           4 years ago
  • 1.0.4                                ...           6 years ago
  • 1.0.3                                ...           6 years ago
  • 1.0.2                                ...           7 years ago
  • 1.0.1                                ...           7 years ago
  • 1.0.0                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 7
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (20)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |