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

@ox2/css-font-roboto-condensed

v4.0.0

Published

Roboto font base64 encoded and embedded in css

Downloads

9

Readme

Roboto Condensed Font v13

This package contains regular Roboto Condensed font style that is converted to base64-encoded data URI strings and embedded into a css file.

Installation

Install using npm:

npm install @ox2/css-font-roboto-condensed --save

Install using yarn:

yarn add @ox2/css-font-roboto-condensed

Why

This is useful for prototyping as you can start using the font quickly by importing single css file to your project/playground and it does not require internet connection to use it once the package has been installed. Depending on your setup and use case this could be used in a production app as well, for example you could merge it with your current style sheet and included in Cordova app bundle for a more consistent font loading experience.

Usage

You can use it in a webpack project by importing it import '@ox2/css-font-roboto-condensed' in your top level js file like index.js or in a .storybook/config.js if your using React Storybook.

Bundled font styles

  • Regular 400

Bundled font language subsets

  • Latin

Font update instructions

Note: There may only be a need to update it when there is a new font version released by Google Fonts.

Current font version: v16

  1. Download remote css file from Google fonts, output: downloads/index.css:
npm run download
  1. Convert font data into base64-encoded data URI strings, output: src/index.css:
npm run convert
  1. Build and publish the package, output: build/
npm run build
cd build && npm publish

TIP: You can check if theres a new font version by running the download script and inspecting font urls ...gstatic.com/s/robotocondensed/v13/Zd2E9a... in the output file or just opening the google font link in your browser and inspecting urls there.

Build your own package

You can easily build your own package with other font family/styles variations by changing FONT_URL variable in scripts/download.sh to your custom one from https://fonts.google.com/ and then following the steps in Update Instructions section.

Font License

Apache License, version 2.0

More info: https://www.google.com/fonts/specimen/Roboto

Repository: https://github.com/google/roboto

Package License

MIT