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 🙏

© 2026 – Pkg Stats / Ryan Hefner

rebanna

v0.5.8

Published

Rebanna is build to easily create a webfont with support of stacked icons.

Readme

Rebanna

Rebanna is build to easily create a webfont with the support of stacked/multicolored icons.

Changeable color

Getting started

Prerequisites

  1. NPM. Rebanna can be installed through npm. When you install Node.js, the package manager will also be installed.
  2. Windows-Build-Tools - Run as administrator npm install --global --production windows-build-tools.

Installing

To install rebanna, run the following on the command line:

npm install rebanna

Usage

Configuration

Configuration can be done by command-line arguments or through a .rebanna.js-file. First, command-line arguments will be used, followed by settings from the config file. Any non-set options will be default.

.rebanna.js example

module.exports = {
  // the destination for the generated webfont
  "destination": "./font",
  // name for the font
  "fontName": "iconfont",
  // classname prefix for the icons
  "fontClassName": "icon",
  // source folder for the icons
  "iconFolder": "./icons",
  // temporary folder
  "tempFolder": "./.tmp",
  // templates for generating html, css or scss
  "template": [
    "./templates/template.html.njk"
  ],
}

Running

Creating a webfont from SVG's with rebanna typically follows these steps:

  1. Store the correctly formatted SVG's in the icons folder.
  2. Run npm run build on the command line to generate your webfont and template.

CLI

Next, to the npm scripts, a CLI is available. Run rebanna [command] [options] to generate your webfont and template.

Commands

| Command | Description| | ------- |:-----------| | build | Run clean, compress and split commands, Builds the webfont. Before building clean, compress and split commands will be run. | | clean | Cleans the destination and temporary folder. | | compress | Compresses all SVG files found in the icon source folder. | | split | Split all compressed SVG files from the temporary folder. |

Options

| Options | Description| | ------- |:-----------| | --clean | Run clean also on build. | | -c, --config | Path to a specific configuration file. | | --debug | Show extra information for debugging. | | -d, --destination | The destination for the generated webfont. | | --fontName | The name for the font. | | --fontClassName | The classname prefix for the icons. | | --fontTemplatePath | Font path that will be used in generated templates. | | -i, --iconFolder | The source folder for the icons. | | --tempFolder | Temporary folder for processing. | | --template | An array of Nunjucks templates for generating HTML, CSS or SCSS. More information about Nunjucks templates can be found at https://bit.ly/2v0E7Ha. | | --watch | Add this option if you want the iconFolder to be watched. Triggers build on added, changed or removed file. |

About

Ever thought about the correct name for a multi-layered-svgs-to-stacked-icons-from-a-webfont tool? I have, it's terrible, believe me. Therefore I just named it after a very special person who often makes me a stack of super fluffy banana pancakes :)

Rebanna helps you creating a multicolored iconfont. Each layer can easily be styled with CSS.

Contribution

Feel free to push your code if you agree with publishing under the MIT license.

Changelog

See CHANGELOG.md for changes per version.

License

Copyright © 2018 Maarten Brakkee [email protected]. The license can be found in the LICENSE file.