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 🙏

© 2024 – Pkg Stats / Ryan Hefner

local-fonts-macos

v0.1.0

Published

Creates a list of all available locally installed fonts on macOS.

Downloads

2

Readme

local-fonts-macos

(WIP) Finds all locally installed fonts on macOS

Uses an Objective-C FFI to access the NSFontManager class and generate a list of locally installed and available fonts along with their attributes.

Install

$ npm install --save local-fonts-macos

Usage

Default

Without passing in any options an object is returned containing every available font family and an array of integers encoded with the attributes of each variant within the family.

const findLocalFonts = require('local-fonts-macos');
findLocalFonts().then(fonts => console.log(fonts));
// {  
//   'Abril Fatface': [ 49154 ],
//   Acre: [ 24576 ],
//   'Advent Pro': [ 20480, 12288, 12288, 24576, 32770, 36866, 12352 ],
//   'Afta serif': [ 20480, 20481 ],

Expanded

Optionally have the encoded attributes expanded, but this is really slow and redundant.

const findLocalFonts = require('local-fonts-macos');
findLocalFonts({ expanded: true }).then(fonts => console.log(fonts));
//   'Abril Fatface':
//    [ { postscriptName: 'AbrilFatface-Regular',
//        style: 'Bold',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Normal' } ],
//   Acre:
//    [ { postscriptName: 'Acre-Medium',
//        style: 'Normal',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Medium' } ],
//   'Advent Pro':
//    [ { postscriptName: 'AdventPro-Regular',
//        style: 'Normal',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Regular' },
//      { postscriptName: 'AdventPro-ExtraLight',
//        style: 'Normal',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Light' },
//      { postscriptName: 'AdventPro-Light',
//        style: 'Normal',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Light' },
//      { postscriptName: 'AdventPro-Medium',
//        style: 'Normal',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Medium' },
//      { postscriptName: 'AdventPro-SemiBold',
//        style: 'Bold',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'SemiBold' },
//      { postscriptName: 'AdventPro-Bold',
//        style: 'Bold',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Bold' },
//      { postscriptName: 'AdventPro-Thin',
//        style: 'Normal',
//        width: 'Condensed',
//        layout: 'Normal',
//        weight: 'Light' } ],
//   'Afta serif':
//    [ { postscriptName: 'Aftaserif',
//        style: 'Normal',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Regular' },
//      { postscriptName: 'Aftaserif-Italic',
//        style: 'Italic',
//        width: 'Normal',
//        layout: 'Normal',
//        weight: 'Regular' } ],
// ...............

Attribute encoding


Styles (bits 1-4)
1 - Italic
2 - Bold

Widths (bits 5-8)
1 - Narrow
2 - Expanded
4 - Condensed
8 - SmallCaps

Layouts (bits 9-12)
4 - Monospace

Weights (bits 13-16)
1 - Thin
2 - Thin
3 - Light
4 - Regular
5 - Regular
6 - Medium
7 - Medium
8 - SemiBold
9 - Bold
10 - ExtraBold
11 - Black

TODO

Working on implementing a bridge to the Core Text framework to query additional font attributes/descriptors and allow access to more low-level functionalities involved in creating/displaying fonts.

License

MIT © Scott M. Rogers