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

@eightshapes/esds-icons

v0.4.1

Published

EightShapes Design System Icons are a collection of `.svg` assets that are used within other Design System Components.

Downloads

46

Readme

EightShapes Design System Icons

EightShapes Design System Icons are a collection of .svg assets that are used within other Design System Components.

Icon Source Files

Source files are in src/*.svg. Adding, removing, or editing these files will affect the compiled output.

Icon Outputs

The following files are built from the source SVGs:

SVG Sprite

dist/esds-icons.svg

An optimized SVG sprite containing all the source icons. Built using the svg-sprite node package.

Optimized SVGs

dist/icons/*.svg

Optimized SVG files of each source icon. Optimized using the svgo node package.

ES6 modules

dist/*.svg.js

ES6 modules containing the optimized SVG source as a string. First optimized using svgo then wrapped in ES6 syntax using a custom script: scripts/build-es6-modules.js

ES6 filenames

Output file names are created based on Pascal-casing the source svg asset and prepending EsdsIcon. So, caret-down.svg becomes EsdsIconCaretDown.svg.

ES6 module manifest

index.js

Serves as the main output of this package. Contains ES6 import/export statements for each module.

Icon Names JSON

dist/esds-icon-names.json

A JSON array containing individual SVG filenames minus the extension. Useful for iterating over the icon set programmaticaly, to generate an icon gallery.

Building Icon Outputs

Before running commands in this repository, install lerna.

Running icon scripts

The following esds-icons npm scripts should be run from the root of the icons package: ./esds-icons

Build SVG Sprite

npm run build:sprite

Build Optimized SVGs

npm run build:optimized

Build ES6 Modules, ES6 module manifest, & Icon Names JSON

npm run build:es6-modules

Build All Icon Assets

npm run build

Build All Icon Assets & Watch For Changes

npm start

Build Config

Adding New Icons

Add raw .svg assets to src/ and re-run the build commands to add new icons to the output.

Consuming Icon Outputs

SVG Sprite

Icons within the SVG sprite can be referenced by name via the <use> element.

<!-- Inject esds-icons.svg into the DOM -->

<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28">
	<use href="#caret-down"/> <!-- Reference using the icon name -->
</svg>

Optimized SVGs

Optimized SVGs can be injected into the page via HTML <img> tags among other means.

<img src="/path/to/caret-down.svg" alt="open menu"/>

ES6 Modules & ES6 manifest

ES6 module assets can be imported into Javascript contexts.

Single icon:

import { EsdsIconCaretDown } from '@eightshapes/esds-icons/dist/EsdsIconCaretDown.svg.js';

Multiple icons (manifest file):

import { EsdsIconCaretDown, EsdsIconCaretUp } from '@eightshapes/esds-icons';

Icon Gallery

||||||| |:---:|:---:|:---:|:---:|:---:|:---:| |alert-error|alert-info|alert-warning|align-center|align-left|align-right| |arrow-down|arrow-fill|article|bar-chart|bookmark|calendar-numbered| |calendar|caret-down|caret-right|caret-up|check-filled|check| |comment|download|filter|heart|help|like| |lock|mail|menu-vertical|menu|notification|pencil| |pin|plus-thick|plus|print|search|settings| |star|trash|unlock|video|viewasgrid|viewaslist| |x-thick|x


Dependencies

  • camelcase
    Javascript string utility used to pascal-case source .svg files when creating ES6 modules

  • chokidar-cli
    Cross-platform file watcher, used to trigger recompilating of icon assets on save.

  • fs-extra
    Extension of default node module fs, adds more functionality under a similar API. A specific use case is the mkdirpSync method used in the build-es6-modules.js script to create the dist directory. There may be other use cases as well.

  • svg-sprite
    Used to generate the svg sprite sheet from individual SVGs. Note: svg-sprite uses svgo internally, but does not expose that dependency outside of creating the sprite sheet. This is why svgo is included separately.

  • svgo
    Used to optimize src SVGs for direct consumption and for use in ES6 Module output.

  • trash-cli
    Cross-platform File system deletion utility, used to delete compiled icon assets before each new build.