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

piconss

v1.0.2

Published

collection of customizable SVG icons for modern web applications.

Downloads

2,734

Readme

piconss

A collection of customizable SVG icons for dark, light and default.

Table of contents

Installation

You can access piconss icons via unpkg or use them locally by cloning the repository.

You can use piconss directly in your HTML or JavaScript applications without any installation:

<img
  src="https://unpkg.com/piconss@latest/icons/default/angularjs.svg"
  width="40"
  alt="AngularJS Icon"
/>

Usage

You can customize the icons using different themes. Currently, the available themes are:

default light dark

To use a specific icon, just provide the correct path as shown below:

<img
  src="https://unpkg.com/piconss@latest/icons/default/angularjs.svg"
  width="40"
  alt="AngularJS Icon"
/>

<img
  src="https://unpkg.com/piconss@latest/icons/dark/expressDark.svg"
  width="40"
  alt="Express Dark Icon"
/>

<img
  src="https://unpkg.com/piconss@latest/icons/light/expressLight.svg"
  width="40"
  alt="Express Light Icon"
/>

Using with unpkg

Add the following link to your HTML or MD file to use icons from unpkg:

<img
  src="https://unpkg.com/piconss@latest/icons/default/iconname.svg"
  alt="Icon Name"
/>
<img
  src="https://unpkg.com/piconss@latest/icons/dark/iconnameDark.svg"
  alt="Icon Name"
/>
<img
  src="https://unpkg.com/piconss@latest/icons/light/iconnameLight.svg"
  alt="Icon Name"
/>

Available Icons

Below is a list of all available icons in the piconss library:

| Icon Name | Icon Image | | -------------- | ------------------------------------------------------------------------------------- | | angularjs | | | aws | | | azure | | | babel | | | blender | | | bootstrap | | | c | | | clion | | | cpp | | | csharp | | | css3 | | | dart | | | django | | | docker | | | dotnet | | | electron | | | expressDark | | | expressLight | | | figma | | | firebase | | | flask | | | flutter | | | gatsby | | | git | | | github | | | go | | | graphql | | | haskell | | | html5 | | | intellij | | | java | | | javascript | | | jenkins | | | jest | | | jira | | | jquery | | | julia | | | jupyter | | | kotlin | | | less | | | linux | | | markdown | | | matlab | | | mocha | | | mongodb | | | mysql | | | nextjs | | | nodejs | | | numpy | | | nuxtjs | | | opencv | | | perl | | | php | | | postcss | | | postgresql | | | postman | | | prettier | | | prisma | | | pycharm | | | python | | | pytorch | | | r | | | reactjs | | | reactrouter | | | redux | | | ruby | | | rust | | | sass | | | scala | | | sketch | | | sqlite | | | svelte | | | swift | | | tailwindcss | | | tensorflow | | | threejsDark | | | threejsLight | | | typescript | | | unity | | | unrealengine | | | vscode | | | vuejs | | | webstorm | |

Contributing

We appreciate your contributions to piconss! To contribute, follow these steps:

  1. Fork the repository: Go to the piconss repository and click the "Fork" button.

  2. Clone your fork: After forking, clone the repository to your local machine using the following command:

    git clone https://github.com/your-username/piconss.git
  3. Create a new branch Create a new branch where you can make your changes. Use a descriptive branch name:

    git checkout -b my-new-feature
  4. Make your changes Make the necessary changes or additions to the icons or code.

  5. Commit your changes After making your changes, commit them with a clear and concise message:

      git add .
      git commit -m "Add new icon for xyz"
  6. Push to your fork: Push your changes to the branch on your fork:

      git push origin my-new-feature
  7. Submit a pull request: Go back to the original repository and create a pull request from your branch. Be sure to provide a clear explanation of the changes you've made.