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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vscode-icon-resolver

v1.1.1

Published

VScode file and folder icon name resolver for Material, Catppuccin, and VSCode icons

Readme

vscode-icon-resolver

VSCode Icon Resolver Cover

Lightweight library to resolve file and folder icon names for Material, Catppuccin, and VSCode icon themes.

A modernized icon name resolver for Desktop and Mobile apps (rarely needed for web projects). Inspired by vscode-icons-js but expanded to support multiple popular icon sets.

npm version License: MIT

Features

  • Multiple Themes: Supports Material Icon Theme, Catppuccin, and VSCode Icons.
  • Extreme Performance: Uses Map-based lookups for O(1) resolution.
  • Zero Dependencies: Pure logic, no runtime overhead.
  • TypeScript First: Full type safety with comprehensive definitions.
  • Tree-shakeable: You only pay for what you use. Optimized for modern bundlers.
  • Dual Format: Native ESM and CJS support.

Installation

npm install vscode-icon-resolver

Usage

This package returns the canonical icon name (e.g., folder-src, file-typescript). You can use these names to load your own SVG assets or CSS classes.

Basic Usage

import { getCatppuccinFileIcon, getMaterialFileIcon, getVSIFileIcon } from "vscode-icon-resolver";

// Material Theme
const material = getMaterialFileIcon("index.ts"); // "file-typescript"

// Catppuccin Theme
const catppuccin = getCatppuccinFileIcon("package.json"); // "file-npm"

// VSCode Icons (VSI)
const vsi = getVSIFileIcon("docker-compose.yml"); // "file-docker"

Folder Resolution

import { getMaterialFolderIcon, getVSIFolderIcon } from "vscode-icon-resolver";

// Standard folders
getMaterialFolderIcon("src"); // "folder-src"

// Root folder detection (Material/VSI support specific root icons)
getMaterialFolderIcon(".git", true); // "folder-root"

📚 API Reference

Material Icons

  • getMaterialFileIcon(fileName: string): string
  • getMaterialFolderIcon(folderName: string, isRoot?: boolean): string

Catppuccin Icons

  • getCatppuccinFileIcon(fileName: string): string
  • getCatppuccinFolderIcon(folderName: string): string

VSCode Icons (VSI)

  • getVSIFileIcon(fileName: string): string
  • getVSIFolderIcon(folderName: string, isRoot?: boolean): string

Performance

Unlike other libraries that use linear array searches (O(N)), vscode-icon-resolver uses a pre-indexed Map system. This makes icon resolution O(1) regardless of the number of mappings, making it suitable for high-performance file trees and IDE-like applications.

Credits

Inspired by:

License

MIT © Yanis (DevYatsu)