https://github.com/alhadis/urw-core35-fonts
URW++ GhostScript fonts in WOFF2 format.
https://github.com/alhadis/urw-core35-fonts
fonts ghostscript postscript webfonts
Last synced: 12 days ago
JSON representation
URW++ GhostScript fonts in WOFF2 format.
- Host: GitHub
- URL: https://github.com/alhadis/urw-core35-fonts
- Owner: Alhadis
- License: other
- Created: 2017-06-17T11:18:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-25T02:22:20.000Z (over 7 years ago)
- Last Synced: 2025-03-25T08:23:36.846Z (7 months ago)
- Topics: fonts, ghostscript, postscript, webfonts
- Language: Perl
- Homepage: https://npmjs.com/package/urw-core35-fonts
- Size: 5.84 MB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
URW++ GhostScript Fonts
=======================These are WOFF2 versions of [fonts](https://en.wikipedia.org/wiki/Ghostscript#Free_fonts)
included with every [Ghostscript](https://www.ghostscript.com/) installation.
The typefaces were originally created for Artifex Software by German typeface foundry
[URW++](https://www.urwpp.de/), who subsequently released them under the
[GNU Affero General Public License](https://www.gnu.org/licenses/agpl.html).Source files for the Core35 fonts are available from
[`git.ghostscript.com/urw-core35-fonts.git`](http://git.ghostscript.com/?p=urw-core35-fonts.git;a=summary),
where they remain available in four different formats: AFM, OpenType, Type1, and TrueType.Installation
------------
Either extract the fonts from a tarballed release, or install this module just like any other:~~~sh
npm install urw-core35-fonts
~~~__Take note:__
There's no JavaScript in this module.
The package's "entry point" is its main stylesheet, [`index.css`](./index.css),
which holds `@font-face` rules for each bundled font-family and variation thereof:node_modules
└── urw-core35-fonts
├── index.css
└── fonts
├── C059-BdIta.woff2
├── NimbusMonoPS-Bold.woff2
├── NimbusMonoPS-BoldItalic.woff2
├── URWBookman-DemiItalic.woff2
└── ... +32 other itemsYou can attach the font-sheet using an HTML `link`:
~~~html
~~~
Or, if you need a more programmatic way to locate the package or its assets,
use [`require.resolve`](https://nodejs.org/api/globals.html#globals_require_resolve):~~~js
const cssPath = require.resolve("urw-core35-fonts/index.css");
console.log(cssPath) => "/foo/node_modules/urw-core35-fonts/index.css";
~~~License
-------
These fonts are released under the [GNU Affero General Public License v3.0](https://www.gnu.org/licenses/agpl.html).
Verbatim copies of the Ghostscript project's licensing info are included with this package;
see [`COPYING`](COPYING) and [`LICENSE`](LICENSE).