Web fonts repository alternatives and similar software solutions
Based on the "Misc/Other" category.
Alternatively, view Web fonts repository alternatives based on common mentions on social networks and blogs.
-
Monica
Personal relationship manager, and a new kind of CRM to organize interactions with your friends and family. -
CyberChef
Perform all manner of "cyber" operations within a web browser such as AES, DES and Blowfish encryption and decryption, creating hexdumps, calculating hashes, and much more. -
snipe-it
A free open source IT asset/license management system built in PHP on Laravel 5.2 and Bootstrap 3. -
google-webfonts-helper
A Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets. -
MindsDB
MindsDB is an open source self hosted AI layer for existing databases that allows you to effortlessly develop, train and deploy state-of-the-art machine learning models using standard queries. -
blynk
Platform with iOs and Android apps to control Arduino, ESP8266, Raspberry Pi and similar microcontroller boards over the Internet. -
Ombi
A content request system for Plex/Emby, connects to SickRage, CouchPotato, Sonarr, with a growing feature set. -
Reactive Resume
A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. -
Revive Adserver
World's most popular free, open source ad serving system. Formerly known as OpenX Adserver and phpAdsNew. -
King Phisher
King Phisher is a tool for testing and promoting user awareness by simulating real world phishing attacks. -
ytdl-webserver
Docker-ready webserver for downloading youtube videos. -
cState
Static status page for hyperfast Hugo. Clean design, minimal JS, super light HTML/CSS, high customization, optional admin panel, read-only API, IE8+. Best used with Netlify, Docker. -
EasyBook Project
Book publishing as easy as it should be. -
oTranscribe
Free web app to take the pain out of transcribing recorded interviews. -
ViMbAdmin
Provides a web based virtual mailbox administration system to allow mail administrators to easily manage domains, mailboxes and aliases. -
Para
Para is a flexible and modular backend framework/server for object persistence, API development and authentication. -
How Secure Is My Password
Rather than just saying a password is "weak" or "strong", How Secure is My Password? lets your users know how long it would take someone to crack their password. -
visualCaptcha
A configurable captcha solution, focusing on accessibility & simplicity whilst maintaining security. -
DomainMOD
An application to manage your domains and other internet assets in a central location. DomainMOD includes a Data Warehouse framework that allows you to import your WHM/cPanel web server data so that you can view, export, and report on your data. -
GeneWeb
GeneWeb is an open source genealogy software written in OCaml. It comes with a Web interface and can be used off-line or as a Web service. -
Notica
Lets you send browser notifications from your terminal to your desktop or phone. No installation or registration is required. -
MalwareMultiScan
Self-hosted VirusTotal-like for scanning files with multiple antiviruses running in a Docker. -
CrushPaper
Research the web for relevant sources, save quotations from them to CrushPaper and then combine them with your own insights into a paper. -
Anchr
Anchr is a toolbox for tiny tasks on the internet, including bookmark collections, URL shortening and -
Digital-Currency
Create your own Self-Hosted Digital Currency. -
Trello Burndown
An easy to use SCRUM burndown chart for Trello boards. -
PassCheck
A web application featuring some handy password tools, including a password generator, strength checker and HaveIBeenPwned breach checker. -
DailyTxT
Encrypted Diary Web-App to save your personal memories of each day. Includes a search-function and encrypted file-upload.
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Web fonts repository or a related project?
README
Web fonts repository
A simple webfont hosting inspired by Google Fonts. It runs on your server, stores and distributes webfont files and generates CSS on-the-go for embedding fonts on web pages.
Quick start
Requirements
- HTTP server supporting PHP ≥ 7.0
- Composer (required for installation)
Installation
1. Download the source code
Run the following code in the console:
composer create-project finesse/web-fonts-repository webfonts
Where webfonts
is a path to a directory where the repository should be installed.
Or you can make some things manually:
- Download the source code from GitHub and extract it.
- Open a terminal and go to the source code root.
- Install the libraries by running in the terminal:
bash composer install
- Prepare the repository by running in the terminal:
bash composer run-script post-create-project-cmd
2. File permissions
Give the user behalf which the web server runs permissions to write inside the logs
directory.
You can just run this in the console:
# Don't do it in production!
chmod 777 logs
3. Web server
Make the directory public
be the document root of the web server.
Or just open http://localhost/public if you installed the repository to the web server root.
Make all the requests to not-existing files be handled by public/index.php
.
If your server is Apache, it's already done.
Make the server add the Access-Control-Allow-Origin: *
HTTP-header to the font files.
Otherwise some browsers will reject using fonts from the repository.
- Apache: all you need to do is to make sure that the
mod_header.c
module is on (run thea2enmod headers
command and restart the server to turn it on). - Nginx: use this instruction.
Setup
Put your font files (woff, woff2, ttf, otf, eot, svg) to the public/fonts
directory. You may separate them by subdirectories.
You can convert webfont files using Transfonter.
All settings go to the file config/settings-local.php
.
If you don't have it, copy it from the file config/settings-local.php.example
.
Parameters:
displayErrorDetails
Whether errors details should be sent to browser. Anyway errors are written to the file logs/app.log
.
You should turn it off on production server.
logger
/level
How many messages should be logged to the file.
The value is one of the \Psr\Log\LogLevel
constants.
You can read more about log levels here.
fonts
The list of fonts available in the repository. Simple example:
return [
// ...
'fonts' => [
'Open Sans' => [
'styles' => [
'300' => 'OpenSans/opensans-light.*',
'300i' => 'OpenSans/opensans-light-italic.*',
'400' => 'OpenSans/opensans-regular.*',
'400i' => 'OpenSans/opensans-regular-italic.*',
]
],
'Roboto' => [
'styles' => [
'300' => 'Roboto/roboto-light.*',
'400' => 'Roboto/roboto-regular.*',
'500' => 'Roboto/roboto-medium.*',
'700' => 'Roboto/roboto-bold.*',
]
]
]
];
The fonts
array keys are the font families names. The styles
arrays keys are the styles names.
The numbers in the style names are the font weights, i
stands for italic.
The font file paths are given relative to the public/fonts
directory.
The file paths are the glob search patterns.
It means that the repository should consider all files matching the pattern as font files.
You can find more examples and possibilities [here](docs/fonts-setup.md).
Usage
Add a <link>
tag to the HTML code of the page on which you want to embed a font:
<link rel="stylesheet" href="http://web-fonts-repository.local/css?family=Open+Sans:400,400i,700,700i|Roboto:300,400" />
Where http://web-fonts-repository.local
is the root URL of an installed web fonts repository.
The required fonts are specified the same way as on Google Fonts. Font families are divided by |
, families styles
are divided by ,
, family name is separated from styles list using :
.
You may omit the styles list. In this case the regular style (400
) is used.
<link rel="stylesheet" href="http://web-fonts-repository.local/css?family=Open+Sans" />
You can specify a value for the font-display
style property using display
parameter. Example:
<link rel="stylesheet" href="http://web-fonts-repository.local/css?family=Open+Sans&display=swap" />
Then embed a font in a CSS code:
body {
font-family: 'Open Sans', sans-serif;
}
Versions compatibility
The project follows the Semantic Versioning.
It means that patch versions are fully compatible (i.e. 1.2.1 and 1.2.2), minor versions are backward compatible (i.e. 1.2.1 and 1.3.2) and major versions are not compatible (i.e. 1.2.1 and 3.0). The pre-release versions (0.*) are a bit different: patch versions are backward compatible and minor versions are not compatible.
License
MIT. See [the LICENSE](LICENSE) file for details.
*Note that all licence references and agreements mentioned in the Web fonts repository README section above
are relevant to that project's source code only.