Socket
Socket
Sign inDemoInstall

connect-fonts-opensans

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-fonts-opensans

Open Sans font pack for connect-fonts


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

connect-fonts-opensans

Open Sans fontpack for connect-fonts.

Usage

  1. Include connect-fonts in a node module.
const font_middleware = require("connect-fonts");
  1. Include the font packs that you want to serve.
const font_pack  = require("connect-fonts-opensans");
  1. Add a middleware by calling the setup function.
    app.use(font_middleware.setup({
      fonts: [ font_pack ],
      allow_origin: "https://exampledomain.com"
    }));
  1. Add a link tag to include the font CSS.
<link href="/opensans-bold/fonts.css" type="text/css" rel="stylesheet"/ >

Multiple fonts from the family can be included by using a comma separated list of fonts:

<link href="/opensans-bold,opensans-bolditalic,opensans-extrabold,opensans-extrabolditalic,opensans-italic,opensans-light,opensans-lightitalic,opensans-regular,opensans-semibold,opensans-semibolditalic/fonts.css" type="text/css" rel="stylesheet"/ >

Available fonts:

  • opensans-bold
  • opensans-bolditalic
  • opensans-extrabold
  • opensans-extrabolditalic
  • opensans-italic
  • opensans-light
  • opensans-lightitalic
  • opensans-regular
  • opensans-semibold
  • opensans-semibolditalic

Locale-optimised font sets can be served by specifying the locale in the fonts.css URL.

<link href="/latin/opensans-bold/fonts.css" type="text/css" rel="stylesheet"/ >

Available subsets:

  • latin
  • ca
  • cs
  • cyrillic
  • da
  • de
  • en
  • es
  • et
  • fr
  • hu
  • it
  • nl
  • pl
  • pt
  • ro
  • sk
  • sv
  1. Set your CSS up to use the new font by using the "Open Sans" font-family.
    body {
      font-family: 'Open Sans', 'sans-serif', 'serif';
    }

Font Info

Open Sans

Development Info

Author

License

Software: Licenced under version 2.0 of the MPL

https://www.mozilla.org/MPL/

Fonts: Licensed under version 2.0 of the Apache

http://www.apache.org/licenses/LICENSE-2.0

Keywords

FAQs

Package last updated on 31 May 2013

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