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

create-svg-icon-sprite

v1.2.2

Published

Create SVG icon sprite

Downloads

15

Readme

Create SVG icon sprite

npm GitHub release CircleCI npm

This is a tool to:

  • help create an SVG icon sprite
  • build a customisable demo automatically
  • build different scripts to make it easier to use from different environments

It is used for TransferWise icons, but doesn't contain anything TransferWise-specific and is therefore suitable for other personal and enterprise uses.

About

How to use SVG icon sprites and what are the benefits - CSSTricks

Usage

Installation

npm install --save-dev create-svg-icon-sprite

Available scripts

buildReactModules

Builds a React component module named ${icon-name}.js for every icon in the icons directory and places them in react/ directory. They can then be imported individually, allowing us to minimize our app sizes.

For example:

...
import TransferIcon from '@transferwise/icons/react/transfer';

const YourComponent = () => (
  ...
  <TransferIcon size="sm" />
  ...
);

The icon class by default is icon, but you can use the className option on the build script to modify it, as so:

buildReactModules({ className: 'tw-icon' });

It also has a size prop, which simply adds a modifier class with - and the class name to the icon (so if the class is tw-icon, for size="sm", it will add tw-icon-sm).

The component also passes any other className and style values to the icon, so you can style them further.

createSprite

Builds a sprite from all the icons in the icons directory and places it in dist/sprite.svg. It can then be hosted wherever you choose and used via a simple request.

buildDemo

Builds a demo HTML in demo directory. It can then easily be pushed wherever you choose, but GitHub pages using the gh-pages CLI tool is recommended.

The demo has styles for different icon sizes which you could mimic, but choosing your own sizes is recommended.

Example demo (adding styles is possible)

buildSpriteScript

Builds an UMD script in dist/svg-icon-sprite.js that exposes the SVG sprite code as a string, e.g. '<?xml version="1.0" encoding="utf-8"?><svg ...></svg>'.

The global property name is svgIconSprite (so window.svgIconSprite if used from a non-module context).

This script can be a part of your bundle if you wish to avoid an extra request or wish to get started as fast as possible (as it doesn't require you to set up hosting the sprite).

buildVersionScript

Builds an UMD script in dist/svg-icon-sprite-version.js that exposes the version of the package as a string, e.g. '1.2.2'.

The global property name is svgIconSpriteVersion.

This is useful when you decide to host your icon sprite (allows you to cache it separately!), but still maintain control over which version you use from your package.

Contributing

  1. Develop
  2. For a single-run check of version match and linting errors, run npm test.
  3. Bump version number in package.json according to semver and add an item that a release will be based on to CHANGELOG.md.
  4. Submit your pull request from a feature branch and get code reviewed.
  5. If the pull request is approved and the CircleCI build passes, you will be able to merge with rebase.
  6. Code will automatically be released to GitHub and published to npm according to the version specified in the changelog and package.json.

Other

For features and bugs, feel free to add issues or contribute.