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

ngx-logos

v1.0.4

Published

Logo resources for companies listed on the Nigerian Stock Exchange

Readme

🇳🇬 NGX Logos

npm license PRs Welcome

A community-maintained logo resource for companies listed on the Nigerian Stock Exchange.

All logos are available in three standardized formats, with transparent backgrounds:

| Format | Size | Directory | | ------ | --------------------- | ------------ | | PNG | 200×200px | dist/png/ | | WebP | 200×200px | dist/webp/ | | ICO | 16×16, 32×32, 48×48px | dist/ico/ |

Usage

Install

npm install ngx-logos

Or use without installing via npx (see CLI section below).

JS / TS API

// CommonJS
const { getLogoPath, getLogoUrl, listSymbols } = require('ngx-logos');

// ESM / TypeScript
import { getLogoPath, getLogoUrl, listSymbols } from 'ngx-logos';
// Absolute path to the file on disk (useful for Node.js / build tools)
getLogoPath('DANGCEM', 'png');   // → <package_dir>/dist/png/DANGCEM.png
getLogoPath('GTCO', 'ico');      // → <package_dir>/dist/ico/GTCO.ico

// CDN URL via jsDelivr — no local files needed, great for frontend use
getLogoUrl('DANGCEM', 'webp');   // → https://cdn.jsdelivr.net/npm/ngx-logos/dist/webp/DANGCEM.webp
getLogoUrl('GTCO', 'png');       // → https://cdn.jsdelivr.net/npm/ngx-logos/dist/png/GTCO.png

// List all available ticker symbols
listSymbols();                   // → ['ACCESSCORPCORP', 'DANGCEM', 'GTCO', ...]

CLI — copy only the formats you need

# Copy all PNGs to ./public/logos (default)
npx ngx-logos copy

# Copy specific formats
npx ngx-logos copy --formats=png,webp --dest=./public/logos
npx ngx-logos copy --formats=ico --dest=./public/favicons

# Copy specific companies only
npx ngx-logos copy --formats=png --symbols=DANGCEM,GTCO --dest=./assets

# List all available symbols
npx ngx-logos list

When copying multiple formats, each gets its own subdirectory — e.g. ./public/logos/png/, ./public/logos/webp/, ./public/logos/ico/. A single format copies directly into the destination folder.

GitHub Raw URLs

You can reference logos directly without installing anything, using GitHub raw URLs or the jsDelivr CDN (recommended for production — cached and faster):

# jsDelivr CDN (recommended)
https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/DANGCEM.png
https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/webp/GTCO.webp
https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/ico/ACCESSCORP.ico

# GitHub Raw
https://raw.githubusercontent.com/ngnmarket/ngx-logos/main/dist/png/DANGCEM.png
https://raw.githubusercontent.com/ngnmarket/ngx-logos/main/dist/webp/GTCO.webp
https://raw.githubusercontent.com/ngnmarket/ngx-logos/main/dist/ico/ACCESSCORP.ico

In HTML:

<img src="https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/DANGCEM.png" alt="Dangote Cement" width="40" height="40" />

Direct download

Browse and download individual logos from the dist/ folder on GitHub.

Companies

Logos are named by their NGX ticker symbol in uppercase — e.g. DANGCEM.png, GTCO.webp, ACCESSCORP.ico.

Missing a company? See CONTRIBUTING.md to add it.

Contributing

Contributions are welcome! See CONTRIBUTING.md for how to add or update logos.

License

The tooling and scripts in this repository are licensed under the MIT License.

All brand assets (logos, trademarks) remain the property of their respective companies. This repository provides them solely as a convenience resource.