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

fabricons

v0.0.8

Published

Generate icon sets for multiple platforms from Sketch files

Downloads

19

Readme

Fabricons

Generates one or more icon sets from Sketch files for multiple platforms (web, iOS, Android) and provides a local web application for testing the output. (see the demo page for an example)

Fabricons outputs:

  • SVG files, icon font and SVG sprite optimized for web
  • SVG files with configurable bounding boxes/margins for Android
  • PDF files with configurable bounding boxes/margins for iOS
  • SVG sprites
  • Accessible React components for each icon/variant

Requirements

Set Up

  • In the console run ./install.sh to install dependencies.
  • In the console run npm start to start the local server and watch for changes.

How It Works

  • In the .sketch files in /src/sketch there are 1920x1920 artboards for each icon set variant. The artboard name is the name of the icon (close, add, etc.) with a prefix of the variant, like bold/close and light/close.

  • When you save in Sketch with the npm start script running, the artboards will be exported in SVG to the ./generated directory, or according to the configuration, automatically via gulp-sketch, creating directories for each variant based on the artboard names.

  • After exporting, the build will take the SVG files generated for each variant and resize, minify, and package them for various platforms (web, iOS, Android) as individual SVG files, SVG sprites, pdf documents and icon fonts. You can see the result in the /generated directory.

Adding and Modifying Icons

  • Start with the Sketch template provided. Open the template file and then save it as a template (File > Save as Template...). The next time you want to make an icon it will be available in your template list (File > New From Template) in the Sketch app.

  • Save new icon files in the /src/sketch directory.

  • Run npm start to start the local server and watch for changes to the sketch files and generate the various formats.

Guidelines for Drawing Icons

  • Use dashes in the name of the .sketch files (e.g calendar-month). Use the same name for artboards, but prefix with the variant, like bold/calendar-month and light/calendar-month.

  • Draw your icons on the 1920 x 1920 artboards that are set up for you in the Sketch template.

  • Before you flatten shapes or vectorize strokes as described below, make a hidden copy of the original paths off to the side so that you can more easily come back and make changes later.

  • Export strokes to vector (Layer > Paths > Vectorize Stroke).

  • Flatten your shapes (Layer > Paths > Flatten).

  • Don’t use borders on vectors, especially not inside/outside borders which aren’t supported in SVG.

  • Make sure none of the paths go outside of the artboard. If so, the glyph in the icon font will be misaligned. Draw inside the lines.

  • Fill the space edge-to-edge as much as possible. The build process will add margins as needed.

Testing Your Changes

There's a small web app for testing all the icons. You can see all the icons at once, in different sizes and formats.

If you ran npm start, you're already running the web app. Just visit localhost:3002.

Inspiration