Socket
Socket
Sign inDemoInstall

os-fonts

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

os-fonts

Retrieve fonts available on your OS.


Version published
Weekly downloads
49
decreased by-28.99%
Maintainers
1
Weekly downloads
 
Created
Source

os-fonts

Travis Coveralls branch license

Retrieve fonts available on your OS.

Install

$ npm install --save os-fonts

Usage

const osFonts = require('os-fonts');

osFonts.getAll().then(fonts => {
  // array of fonts...
  fonts.forEach(font => {
    console.log(font);
  });
})

API

getAll([useType])

Returns a Promise with all paths to all fonts.

useType

Type: String

Default: system

Options: user, local, network, system

The use type.

getAllSync([useType])

Returns paths to all fonts (synchronous version of getAll).

getFontsInDirectory(dir)

Returns a Promise with paths to all fonts in the given directory.

dir

Type: String

The directory to read

getFontsInDirectory(dir)

Returns paths to all fonts in the given directory (synchronous version of getFontsInDirectory).

License

MIT © Vu Tran

Keywords

FAQs

Package last updated on 09 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc