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

@h2d2/shopicons

v1.9.0

Published

Essentials E-Commerce icon pack for free. Designed by H2D2. Thanks for downloading!

Downloads

1,686

Readme

H2D2-Shopicons

Essential E-Commerce icon pack for free. Designed by H2D2. Thanks for downloading!

SVG & PNG files

All icons can be downloaded as SVG and PNG. Each icon is available in Light, Regular, Bold and Filled style.

Web Components

We also publish our icons as web components for easy-use in your web project. Simply place this markup at the position in your HTML where the icon should appear.

<!-- naming format -->
<shopicon-[STYLE]-[NAME]></shopicon-[STYLE]-[NAME]>

Replace [NAME] with the your desired icon name. You find a list of all icons here. Note that special characters or whitespaces must be removed. Icon Center-Justified e.g. becomes centerjustified.

Replace [STYLE] with your icon style of choice. Possible values are light, regular, bold, filled.

<!-- examples -->
<shopicon-light-bed></shopicon-light-bed>
<shopicon-bold-stars></shopicon-bold-stars>

Caution: Web Components always need a separate closing-tag as seen above. Writing them self-closing (like this <shopicon-light-bed />) will cause issues. Don't do that.

Sizes

The icons come in four sizes which can be controlled via the size attribute on the web component.

<!-- small (24px) DEFAULT -->
<shopicon-regular-search size="s"></shopicon-regular-search>
<!-- medium (32px) -->
<shopicon-regular-search size="m"></shopicon-regular-search>
<!-- large (48px) -->
<shopicon-regular-search size="l"></shopicon-regular-search>
<!-- extra large  (64px) -->
<shopicon-regular-search size="xl"></shopicon-regular-search>

Colors

Icons adopt the font color of the surrounding HTML. This way it's easy to fit the icons into your web page design and you can change the icon color via CSS.

<a href="#">
  <shopicon-regular-search></shopicon-regular-search>
  SEARCH
</a>
<style>
  a {
    color: darkblue;
  }
  a:hover {
    color: hotpink;
  }
</style>

In the example above the text and the icon will be shown darkblue. Hovering the link will change both to hotpink.

Include JavaScript via CDN bundles

For the web componets to work you need to include the associated JavaScript in your page. We've created four bundle files that you can directly reference from the jsdeliver CDN. Each bundle file includes all icons for a specific icon style. The bundles are optimized and have a file size of 30-40kb (gzip) each.

In practice we assume you would only use one (or two) icon styles at once, but its technically possible to use all styles in one page.

https://cdn.jsdelivr.net/npm/@h2d2/[email protected]/umd/light.js
https://cdn.jsdelivr.net/npm/@h2d2/[email protected]/umd/regular.js
https://cdn.jsdelivr.net/npm/@h2d2/[email protected]/umd/bold.js
https://cdn.jsdelivr.net/npm/@h2d2/[email protected]/umd/filled.js

Here an example for using the star icon in bold.

<script src="https://cdn.jsdelivr.net/npm/@h2d2/[email protected]/umd/bold.js"></script>

<shopicon-bold-stars></shopicon-bold-stars>

Include individual icons via NPM

If you need more control and only want to include the icons into your software that you really use we offer a NPM package.

npm install @h2d2/shopicons

Install the package and import the icons that you want to use in your JavaScript.

import "@h2d2/shopicons/es/bold/star";
import "@h2d2/shopicons/es/bold/heart";
import "@h2d2/shopicons/es/filled/heart";

const html = `
  ...
  <shopicon-bold-stars size="large"></shopicon-bold-stars>
`;

This way only the icons you specify will end up in your final JavaScript bundle.

License

Our icons are free for everyone to use. Please don’t try to sell them. Available under Apache license version 2.0.

Feedback & sharing

• If you have questions about this icon set, please sent us an email to: [email protected]

• Share your work with this icon set and tag us on instagram @h2d2_design #h2d2_design

• More infos about this icon set: https://www.h2d2.de/en/downloads/the-essential-ecommerce-iconset/

Contribution & development

Development

The web components are derived at build time from the icons in the SVG folder. Adding, removing or altering a SVG icon will automatically propagate to the web components. This is done on every push to GitHub via Actions. You can also test the generation locally.

Installing build environment

npm install

Note: You should have node v16 installed.

Generating Web Components (/dist) and optimized bundles (/umd, /es)

npm run build

There is demo page which loads all individual icons and automatically shows them in different variations (styles, colors, sizes) in your browser.

npm start

Publishing

Publishing is also done by the GitHub Actions pipeline in this repository. Therefore you must increment the package version and push the changes.

The below code would increment the last digit of the version string (1.0.2 > 1.0.3) and push to GitHub. This triggers the creation of a new NPM package an also makes the new release available via the jsdelivr CDN.

npm version patch
git push

Shopicons on Figma

Download Shopicons as a Figma library for easy re-use.

Thanks 💚

H2D2 Your UX and UI Agency in Berlin www.h2d2.de