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 🙏

© 2025 – Pkg Stats / Ryan Hefner

eve-skin-icons

v1.0.6

Published

Skin icon images from the EVE Online client, packaged as an easy‑to‑install npm module for third‑party sites and custom web applications.

Readme

eve-skin-icons

Skin icon images from the EVE Online client, packaged as an easy‑to‑install npm module for third‑party sites and custom web applications.


Table of Contents


Installation

Install the package via npm:

npm install eve-skin-icons

or with yarn:

yarn add eve-skin-icons

Usage

Unpacking the Icon Images

After installing the package, use the eve-skin-icons-unpack command to extract the skin icon images into a local directory:

npx eve-skin-icons-unpack -d ./icons

This command will unzip the skin icon images into the specified directory (./icons in this example).

CLI Options:

  • -d, -dest <directory> The directory where you want to extract the images. If not provided, the images will be unpacked into the <CWD>/skin-icons.

  • -v, -verbose Enable verbose logging output during extraction. Useful for debugging or inspection.

You can mix positional and named options. Named options override positional ones if both are specified.

Import and use the skin icon URLs in your application:

import { SkinMap } from "eve-skin-icons";

// usage example
export const resolveTypeImageURL = (typeId: number | string, size = 32) => {
    const skinNumber: number = SkinMap[typeId];
    if (skinNumber) {
        return `./images/skin-icons/${skinNumber}.png`;
    } else {
        return `https://images.evetech.net/types/${typeId}/icon?size=${size}`;
    }
};
// example: resolveTypeImageURL(35224) returns './images/skin-icons/3130.png'

API

  • SkinMap[typeId]
    Returns the icon image number associated with the given SKIN type ID.
    If no mapping is found, a fallback to EVE's image server is used.

Select Your SkinMap Version

  • skin-map.mjs: Fully unpacked for instant access, but larger in size (177 KB, import { SkinMap } from "eve-skin-icons/skin-map.mjs").
  • skin-map-next.mjs: Text-compressed format, lightweight (112 KB, import { SkinMap } from "eve-skin-icons/skin-map-next.mjs").
  • skin-map-compress.mjs: Ultra-lightweight with gzip + Base64 encoding (41 KB, default when using import { SkinMap } from "eve-skin-icons").

Available Assets

All skin icon images extracted from the official EVE Online client. Icons are provided in a fixed resolution of 64×64 px.

  • Refer to the docs for a full list of supported skin IDs. A full list will be available soon.

Contributing

Contributions welcome! Please read CONTRIBUTING.md for guidelines and the code of conduct.


License & Copyright

Copyright Notice

EVE Online and the EVE logo are the registered trademarks of CCP hf. All rights are reserved worldwide.

All other trademarks are the property of their respective owners.
EVE Online, the EVE logo, EVE and all associated logos and designs are the intellectual property of CCP hf. All artwork,
screenshots, characters, vehicles, storylines, world facts or other recognizable features of the intellectual property
relating to these trademarks are likewise the intellectual property of CCP hf.

CCP hf. has granted permission to eve-skin-icons to use EVE Online and all associated logos
and designs for promotional and information purposes on its website but does not endorse,
and is not in any way affiliated with, eve-skin-icons.

CCP is in no way responsible for the content on or functioning of this website,
nor can it be liable for any damage arising from the use of this website.

This package is provided for non-commercial, informational use only.
Redistribution of the included image assets requires explicit permission from CCP hf.