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

lofo

v0.4.0

Published

A CLI tool for adding local fonts to your Next.js project.

Downloads

509

Readme

LoFo

CLI for adding local fonts to your Next.js projects!

🛑Prerequisites.

  • Node.js version >= 10.8.0
 npx lofo

⬜Installation

To get started, run the above command in the root directory of your project and lofo would try to get everything set up properly for you automatically. You can also install the CLI on your machine by running the command below:

npm install -g lofo

After which you can execute the CLI by just running the command: lofo in your terminal...

🔍How it works.

When the CLI is executed, it would look through your project for a fonts directory and create one(if it doesn't exist) in the root directory of your project.

[!NOTE] It would not check your entire project directory tree recursively, it instead checks directories that a fonts directory would likely be found(based on common conventions). As this would most likely vary from person-to-person, you could put all your local font files in a directory named fonts in the root directory of your project. You could move it somewhere else afterwards! A common convention you could also consider is putting your fonts directory(containing all your font files) in the public/ directory of your Next.js project.

In the latter scenario, after the creation of the fonts directory, it would prompt you to move your local font files[these files typically have extensions such as .otf, .ttf, .woff, .woff2 etc.] into the fonts directory.

It would then resolve the paths to all the font files in your fonts directory and then generate the code snippet to add the font imports into your Next.js project. This would typically be written to your root layout.tsx file.

📂Project Structure

This is an example project structure to begin with before running the cli -- not cumpulsory

my-project/
├── app
├── pages
├── public
├── fonts/
│   ├── my-font.woff2
│   └── ...
└── ...

📍Fonts Directory Destination

The final destination of the fonts directory is up to you. You can decide to move the fonts directory to a different location, this can be achieved by running the CLI with an argument[yet to be implemented] or manually moving the fonts directory through your project directory tree(in your IDE). If you prefer the latter, remember to run lofo afterwards to auto-update your import path[this is a compulsory step]...

Using a command line argument with the lofo command[Ignore angle brackets -- used as placeholder for actual value]: | Command | Description | Example | | --- | --- | --- | | lofo --dest <path> or lofo -d <path> | Run this command when adding a new font to your project to designate a "final destination" for the fonts directory. The value of <path> is resolved relative to your root directory | lofo --dest public/assets/ | | lofo remove <font_family> or lofo rm <font_family> | Run this command to remove a specified font family from your project -- the fonts directory | lofo rm Roboto | | lofo remove --all or lofo remove -a | Run this command to remove all font files and font family directories from your project -- the fonts directory | lofo rm --all |

👀Quirks

These are known "quirks" that you may notice during usage, some are by design, others are minor issues that would be fixed.

Quirk: Nothing happens when I add a folder containing my font files to the fonts directory.

For now, the CLI only checks for font files that are direct "children" of the fonts directory -- it doesn't look inside sub-directoiries of fonts. This means that, you can't add whole directories containing all the files you need, instead you add the individual font files to the fonts directory and let the CLI group them for you...

This can admittedly get troublesome and we're currently looking into it. You can keep track of this issue to know when it's been resolved.

Quirk: Something GOOFED.

Unfortunately, every failure can't be accounted for and the only "escape hatch" for now is the command: lofo rm --all -- this command would remove all the font files and directories in the fonts directory, this should give you a "fresh" slate. If after doing this, something still goofs[something still goes wrong], please don't hesitate to open an issue.

🗾Roadmap

  • [ ] Add support for Next.js projects using the pages router
  • [ ] Add support for React.js projects
  • [ ] Add support for Vanilla.js projects

[!WARNING] This project, at this time, is in active development and makes some assumptions about your project and conventions. Feel free to open an issue if you catch something🧐!