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

nuvic

v1.1.2

Published

Official static assets and logos for Nuvic organizations and brands

Readme

🌐 Nuvic Static Assets

Premium global CDN-hosted static assets, logos, and icons for the Nuvic ecosystem.

This repository packages and distributes the official logos, favicons, and graphic assets for the Nuvic brand and its sub-divisions. All assets are automatically deployed and globally served using the high-performance unpkg CDN.


🚀 CDN Integration

You can link directly to any asset using the unpkg CDN. We recommend using version-pinned URLs for production to ensure stability, and latest URLs for development/staging environments.

Base URL Formats

  • Latest (Recommended for Development):
    https://unpkg.com/nuvic/logo/<sub-division>/<file>
  • Version Pinned (Recommended for Production):
    https://unpkg.com/[email protected]/logo/<sub-division>/<file>

🎨 Available Brand Assets

Below is the directory of current sub-division assets. All assets are fully optimized high-resolution .ico source files.

| Sub-Division / Brand | Asset Path | CDN URL (Latest) | CDN URL (Pinned v1.0.0) | | :--- | :--- | :--- | :--- | | 🏢 Nuvic (Core) | logo/nuvic/logo-colored.ico | Latest URL | Pinned URL | | 💼 Agency | logo/agency/logo-colored.ico | Latest URL | Pinned URL | | 🎓 Education | logo/education/logo-colored.ico | Latest URL | Pinned URL | | 🔬 Research | logo/research/logo-colored.ico | Latest URL | Pinned URL | | 🎬 Studio | logo/studio/logo-colored.ico | Latest URL | Pinned URL | | 💻 Tech | logo/tech/logo-colored.ico | Latest URL | Pinned URL |


🖼️ Team, Project & Organization Image Assets

We have added premium, high-fidelity WebP images for Nuvic teams, projects, and division branding. These images are perfectly optimized for web and fast loading.

🏢 Organization & Division Assets

| Division / Branding | Asset Path | CDN URL (Latest) | | :--- | :--- | :--- | | 🏢 Nuvic (Core) Thumbnail | images/nuvic/nuvic/squared-thumbnail.webp | Latest URL | | 💻 Tech Division Thumbnail | images/nuvic/tech/squared-thumbnail.webp | Latest URL | | ☕ Mokaarom Thumbnail | images/nuvic/mokaarom/square-image.webp | Latest URL |

👥 People & Team Assets (Portraits)

| Team Member | Asset Path | CDN URL (Latest) | | :--- | :--- | :--- | | 👨‍💻 Mirajul | images/peoples/mirajul.webp | Latest URL | | 👨‍💻 Munna | images/peoples/munna.webp | Latest URL | | 👨‍💻 Muntasir | images/peoples/muntasir.webp | Latest URL | | 👨‍💻 Nafi | images/peoples/nafi.webp | Latest URL | | 👨‍💻 Rasif | images/peoples/rasif.webp | Latest URL |

🚀 Projects Assets (Thumbnails)

| Project | Asset Path | CDN URL (Latest) | | :--- | :--- | :--- | | 🎯 Cue | images/projects/cue/squared-thumbnail.webp | Latest URL | | 🎨 Marzia | images/projects/marzia/squared-thumbnail.webp | Latest URL | | 🔮 Qul | images/projects/qul/squared-thumbnail.webp | Latest URL | | 🗺️ Roam | images/projects/roam/squared-thumbnail.webp | Latest URL |


🛠️ Usage Examples

1. In HTML Documents

Add the Nuvic favicon to your website's header:

<!-- Core Nuvic Favicon -->
<link rel="icon" type="image/x-icon" href="https://unpkg.com/[email protected]/logo/nuvic/logo-colored.ico">

<!-- Division-Specific Favicon (e.g. Tech) -->
<link rel="icon" type="image/x-icon" href="https://unpkg.com/[email protected]/logo/tech/logo-colored.ico">

2. In CSS Stylesheets

Set an icon or logo background dynamically:

.brand-icon {
  width: 32px;
  height: 32px;
  background-image: url("https://unpkg.com/[email protected]/logo/nuvic/logo-colored.ico");
  background-size: contain;
  background-repeat: no-repeat;
}

3. In React / Next.js

Easily use the assets within your modern React/Next.js components:

import React from 'react';

export const NuvicLogo = () => (
  <img 
    src="https://unpkg.com/[email protected]/logo/nuvic/logo-colored.ico" 
    alt="Nuvic Logo" 
    width={48} 
    height={48} 
  />
);

📦 How to Update and Publish

When you add new assets or update existing ones, follow these simple steps to publish a new version:

  1. Increment the Version in package.json (or use npm commands):

    # For a minor update/patch (e.g., 1.0.0 -> 1.0.1)
    npm version patch
       
    # For a new asset addition (e.g., 1.0.0 -> 1.1.0)
    npm version minor
  2. Publish to NPM: If your account has Two-Factor Authentication (2FA) enabled (standard for most npm accounts), provide your 6-digit authenticator OTP code:

    npm publish --access public --otp=YOUR_OTP_CODE

    (Replace YOUR_OTP_CODE with the 6-digit code from your authenticator app).

The updated assets will immediately propagate and become available on the unpkg CDN under your new version tag!