Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@arma-events/web-fonts
Advanced tools
Packaged, ready-to-use web fonts for arma.events and all related projects.
This package includes all web fonts used in arma.events and related projects.
Each font is...
npm i @arma-events/web-fonts
Simply include the css file, which includes font-faces for all font as well as their fallback fonts:
@import '@arma-events/web-fonts/dist/index.css';
/* Use the font */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Raleway', 'Raleway Fallback', sans-serif; /* Make sure to include the fallback font to reduce layout shift */
}
When you are using SASS (or SCSS) you can also import the index.scss
, which allows configuration which font families, Unicode ranges and styles should be included as well as from where the font files are loaded.
// NOTE: omit the variable entirely to keep the default value
@use '@arma-events/web-fonts/dist/index.scss' with (
// no trailing slash;
// would attempt to load '~my/font/files/Raleway/italic.latin.woff2'
// ^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^ ^^^^^
// Your Path Family Style Range
$base-path: '~my/font/files',
// only include Source Sans 3 and Raleway in the italic-style
// and latin as well as latin-ext ranges
$families: ('Source Sans 3', 'Raleway'),
$styles: ('italic'),
$ranges: ('latin', 'latin-ext'),
);
[!IMPORTANT] All "Allowed Values" below might be outdated. Check the
dist/_build_info.scss
file in your package directory for the correct values.
$base-path
Name | Value |
---|---|
Description | Base path of woff files to load (without a trailing slash) |
Default Value | @arma-events/web-fonts/dist/woff2 |
Type | String |
Allowed Values | - |
$families
Name | Value |
---|---|
Description | Font families to include |
Default Value | All families |
Type | List |
Allowed Values | one or multiple of Source Sans 3 , Source Code Pro , Raleway |
$styles
Name | Value |
---|---|
Description | Font styles to include |
Default Value | All styles |
Type | List |
Allowed Values | one or multiple of normal , italic |
$ranges
Name | Value |
---|---|
Description | Unicode ranges to include |
Default Value | All built ranges |
Type | List |
Allowed Values | one or multiple of cyrillic-ext , cyrillic , greek-ext , greek , vietnamese , latin-ext , latin |
FAQs
Packaged, ready-to-use web fonts for arma.events and all related projects.
We found that @arma-events/web-fonts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.