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

fontawesome6pro

v1.0.2

Published

The iconic font and CSS framework

Readme

FontAwesome 6 Pro

Overview

FontAwesome 6 Pro is a comprehensive icon library that provides a wide range of icons for use in web projects. This package gives you access to the premium Pro version with thousands of icons across multiple styles.

Installation

Using Package Manager

For better version control and dependency management, use a package manager like npm or yarn:

# Using npm
npm install fontawesome6pro

# Using yarn
yarn add fontawesome6pro

Using CDN

To quickly add FontAwesome to your project, you can use a CDN. Add the following line to your HTML file:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/atul22g/CDN@latest/liberies/[email protected]/css/all.min.css">

Usage

Basic Usage

Once installed, import the CSS in your JavaScript or TypeScript file:

import 'fontawesome6pro/css/all.min.css'

Then, use icons by adding the appropriate classes to your HTML elements:

<!-- Solid Style -->
<i class="fas fa-camera"></i>

<!-- Regular Style -->
<i class="far fa-camera"></i>

<!-- Light Style -->
<i class="fal fa-camera"></i>

<!-- Thin Style -->
<i class="fat fa-camera"></i>

<!-- Duotone Style -->
<i class="fad fa-camera"></i>

Advanced Usage

FontAwesome provides additional features such as:

Icon Sizing

<i class="fas fa-camera fa-xs"></i>
<i class="fas fa-camera fa-sm"></i>
<i class="fas fa-camera fa-lg"></i>
<i class="fas fa-camera fa-2x"></i>
<i class="fas fa-camera fa-3x"></i>

Icon Transformations

<i class="fas fa-camera fa-rotate-90"></i>
<i class="fas fa-camera fa-flip-horizontal"></i>

Icon Animations

<i class="fas fa-spinner fa-spin"></i>
<i class="fas fa-circle-notch fa-pulse"></i>

Best Practices

  • Always use the latest version to ensure you have the latest icons and features
  • Minimize the number of icons loaded to improve performance
  • Consider using the JS version for more dynamic control over icons

Support

For support and further information, visit the official FontAwesome documentation.