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

fur

v7.2.0

Published

Quick generator for banner, favicon, etc...

Downloads

200

Readme

fur

Build Status npm Version JS Standard

Quick generator for banner, favicon, etc...

// Generate favicon with command options.
$ fur favicon "my-favicon.png" --color b --font n --text oh --shape c

Getting started

Requirements

Installation

fur is available as an npm package.

# Install fur as a global module.
$ npm install fur -g

Or you can install it without -g option and use Programmatic API.

Available Commands

$ fur -h
Usage: fur [options] [command]

Options:
  -V, --version                 output the version number
  -h, --help                    display help for command

Commands:
  banner [options] <filename>   Generate a banner.
  favicon [options] <filename>  Generate a favicon.
  help [command]                display help for command

Programmatic API

fur provides programmatic API which enables you to execute fur commands from Node.js program.

const fur = require('fur')

;(async () => {
  await fur.banner('my-banner.svg', {
    text: 'coz',
    color: 'o',
    font: 'aa',
    style: 'plain',
    shape: 'k'
  })
})()

Generating Logo Banner

Banner Examples

| Image | Command | | ----- | ------- | | | $ fur banner "fur-banner.png" --text="FUR" --color="#ff9100" --font="bt" --shape="a" | | | $ fur banner "coz-banner.png" --text="coz" --color="#00b560" --font="aa" --shape="b" | | | $ fur banner "apeman-banner.png" --text="apeman" --color="n" --font="p" --shape="a" | | | $ fur banner "pudding-banner.png" --text="PUDDING" --color="bi" --font="cn" --shape="e" | | | $ fur banner "pon-banner.png" --text="pon" --color="ah" --font="ar" --shape="f" | | | $ fur banner "rfunc-banner.png" --text="rfunc" --color="ac" --font="e" --shape="f" |

These examples are available here.

Banner Usage

$ fur banner -h

Usage: fur banner [options] <filename>

Generate a banner.

Options:
  -c, --color <color>         Color expression string or color theme name.
  -s, --shape <shape>         Banner style.
  -f, --font <font>           Font file name or font theme name.
  -F, --font-size <fontSize>  Size of font.
  -H, --height <height>       Banner height.
  -o, --format <format>       File format. 'svg' or 'png'.
  -t, --text <text>           Banner text.
  -W, --width <width>         Banner width.
  -v, --verbose               Emit verbose log.
  -h, --help                  display help for command

Generating Favicon

Favicon Examples

| Image | Command | | ----- | ------- | | | $ fur favicon "f-favicon.png" --text="F" --color="#ff9100" --font="bt" --shape="a" | | | $ fur favicon "c-favicon.png" --text="c" --color="#00b560" --font="aa" --shape="c" | | | $ fur favicon "ap-favicon.png" --text="ap" --color="n" --font="p" --shape="g" | | | $ fur favicon "p-favicon.png" --text="P" --color="bi" --font="cn" --shape="a" | | | $ fur favicon "pon-favicon.png" --text="pon" --color="ah" --font="ar" --shape="g" | | | $ fur favicon "rf-favicon.png" --text="rf" --color="ac" --font="e" --shape="c" --font-size="148" | | | $ fur favicon "mw-favicon.png" --text="mw" --color="n" --font="p" --shape="i" --font-size="92" | | | $ fur favicon "api-favicon.png" --text="api" --color="n" --font="p" --shape="i" --font-size="92" | | | $ fur favicon "a-favicon.png" --text="a" --color="n" --font="p" --shape="g" --font-size="92" |

These examples are available here.

Favicon Usage

$ fur favicon -h

Usage: fur favicon [options] <filename>

Generate a favicon.

Options:
  -c, --color <color>         Color expression string or color theme name.
  -f, --font <font>           Font file name or font theme name.
  -F, --font-size <fontSize>  Size of font.
  -S, --size <size>           Favicon size.
  -s, --shape <shape>         Banner style.
  -t, --text <text>           Favicon text.
  -o, --format <format>       File format. 'svg' or 'png'.
  -v, --verbose               Emit verbose log.
  -h, --help                  display help for command

Theme Gallery

About this project

Author

Donation

Support this project and others by okunishinishi via gratipay.

License

This software is released under the MIT License.

Links