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

app-launcher-karma

v1.0.10

Published

A React TypeScript component for an app launcher, similar to Google app launcher, for company products.

Readme

app-launcher

A React-based app launcher component available as an npm package and also via CDN for easy integration in any web page.

App Launcher Demo Image

Features

  • 🚀 Easy integration via CDN or npm
  • ⚛️ Built with React and TypeScript
  • 🎨 Fully customizable styling with CSS-in-JS
  • 📱 Responsive design with smooth animations
  • 🔗 Simple click-to-launch functionality
  • ⌨️ Keyboard navigation (ESC to close)
  • 🖱️ Click outside to close
  • 🖼️ Supports both URL and base64 icons
  • ♿ Accessible with proper ARIA labels

Installation

Via npm

For React projects, install the package using npm:

npm install app-launcher-karma

Then import the components as needed in your React application.

Via CDN

For quick integration into any HTML page without a build process, use the CDN version.

CDN Usage

Include the app launcher in any HTML page by loading React, ReactDOM, and the app-launcher CDN script. Then call the global renderAppLauncher function to render the component.


<body>
    <div id="app-launcher"></div>

    <!-- Load React and ReactDOM from CDN -->
    <script src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
    <script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>

    <!-- Load app-launcher from CDN -->
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/app-launcher.cdn.js"></script>

    <!-- Render the app launcher -->
    <script>
       window.renderAppLauncher(
            "app-launcher",
            [
                { name: "App 1", icon: "/images/app1.jpg", url: "https://example.com/app1" },
                { name: "App 2", icon: "/images/app2.jpg", url: "https://example.com/app2" },
            ],
            {
                // Optional configuration
                svgColor: "#FF0000",  // Red dots
                position: "right",    // Position the dropdown
                dropdownStyles: {     // Custom styles
                    container: {
                        background: "#f5f5f5"
                    }
                }
            }
        );
    </script>
</body>
</html>

npm Usage

JavaScript

import { AppLauncher } from "app-launcher-karma";

function MyApp() {
  const products = [
    {
      name: "App 1",
      icon: "/images/app1.jpg",
      url: "https://example.com/app1",
    },
    {
      name: "App 2",
      icon: "/images/app2.jpg",
      url: "https://example.com/app2",
    },
  ];

  return (
    <div>
      <AppLauncher products={products} />
    </div>
  );
}

TypeScript

import { AppLauncher, AppLauncherProduct } from "app-launcher-karma";

function MyApp() {
  const products: AppLauncherProduct[] = [
    {
      name: "App 1",
      icon: "/images/app1.jpg",
      url: "https://example.com/app1",
    },
    {
      name: "App 2",
      icon: "/images/app2.jpg",
      url: "https://example.com/app2",
    },
  ];

  return (
    <div>
      <AppLauncher products={products} />
    </div>
  );
}

TypeScript Support

This package is written in TypeScript and includes type definitions. The following interfaces are available:

AppLauncherProduct

interface AppLauncherProduct {
  name: string;
  icon: string; // URL or base64 data URI
  url: string;
}

AppLauncherProps

interface AppLauncherProps {
  products: AppLauncherProduct[];
  dropdownStyles?: DropdownStyles;
}

DropdownStyles

interface DropdownStyles {
  container?: CSSProperties;
  grid?: CSSProperties;
  item?: CSSProperties;
  icon?: CSSProperties;
  label?: CSSProperties;
}

Usage with Types

import {
  AppLauncher,
  AppLauncherProduct,
  AppLauncherProps,
} from "app-launcher-karma";

const products: AppLauncherProduct[] = [
  {
    name: "Gmail",
    icon: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
    url: "https://gmail.com",
  },
  {
    name: "Calendar",
    icon: "/icons/calendar.png",
    url: "https://calendar.google.com",
  },
];

function MyComponent(): JSX.Element {
  return <AppLauncher products={products} />;
}

Custom Styling

import {
  AppLauncher,
  AppLauncherProduct,
  DropdownStyles,
} from "app-launcher-karma";

const customStyles: DropdownStyles = {
  container: {
    background: "#f8f9fa",
    borderRadius: 16,
    boxShadow: "0 8px 32px rgba(0,0,0,0.12)",
    minWidth: 400,
  },
  grid: {
    gridTemplateColumns: "repeat(4, 1fr)",
    gap: 16,
  },
  item: {
    padding: 12,
    borderRadius: 12,
    transition: "all 0.2s ease",
    ":hover": {
      background: "#e9ecef",
    },
  },
  icon: {
    width: 64,
    height: 64,
    borderRadius: 8,
  },
  label: {
    fontSize: 12,
    fontWeight: 500,
    color: "#495057",
  },
};

const products: AppLauncherProduct[] = [
  { name: "Dashboard", icon: "/icons/dashboard.png", url: "/dashboard" },
  { name: "Analytics", icon: "/icons/analytics.png", url: "/analytics" },
];

function StyledLauncher(): JSX.Element {
  return <AppLauncher products={products} dropdownStyles={customStyles} />;
}

API Reference

renderAppLauncher (CDN)

When using the CDN version, call window.renderAppLauncher(elementId, products, options) with the following configuration:

| Parameter | Type | Required | Description | | ----------- | ------ | -------- | ----------------------------------------------------------------- | | elementId | string | Yes | The id of the DOM element where the app launcher will be rendered | | products | array | Yes | Array of product objects (see Product Object structure below) | | options | object | No | Configuration options (see Options Object structure below) |

Options Object

| Property | Type | Default | Description | | ---------------- | -------------------------- | ------- | --------------------------------------------------------------- | | dropdownStyles | DropdownStyles | {} | Custom styles for dropdown elements (see Styling section below) | | svgColor | string | "#555" | Color of the launcher button dots | | position | "right" , "left" ,"center" | "left" | Position of the dropdown relative to the launcher button | | |

Product Object

Each product in the products array should have the following structure:

| Property | Type | Required | Description | | -------- | ------ | -------- | ------------------------------------------------- | | name | string | Yes | Name of the product to display | | icon | string | Yes | URL or base64 data URI for the product icon image | | url | string | Yes | URL to launch when the product is clicked |

Important Notes

  • When using the CDN version, make sure to load React and ReactDOM before the app-launcher script
  • The renderAppLauncher function is exposed globally by the CDN bundle
  • Product icons should be optimized for web display (recommended: square images, 64x64px or larger)
  • URLs can be absolute or relative paths
  • Custom styles are merged with default styles, allowing for partial customization
  • The dropdown uses a 3-column grid by default, but can be customized via dropdownStyles.grid
  • The launcher button color can be customized using the svgColor option
  • Dropdown positioning can be set to left (default), center, or right

Styling & Customization

The app launcher supports comprehensive styling customization through the dropdownStyles prop. You can customize the following elements:

Styling Options

| Style Key | Description | Default Values | | ----------- | ------------------------ | -------------------------------------------------------------- | | container | Main dropdown container | Background: #fff, border-radius: 12px, shadow, positioning | | grid | Product grid layout | 3-column grid with 10px gap | | item | Individual product items | Flex column layout, padding: 8px, border-radius: 8px | | icon | Product icons | Size: 50x50px, object-fit: contain | | label | Product name labels | Font-size: 14px, color: #222 |

Styling Examples

Dark Theme

const darkStyles: DropdownStyles = {
  container: {
    background: "#2d3748",
    border: "1px solid #4a5568",
  },
  item: {
    color: "#e2e8f0",
    ":hover": {
      background: "#4a5568",
    },
  },
  label: {
    color: "#e2e8f0",
  },
};

Compact Layout

const compactStyles: DropdownStyles = {
  container: {
    minWidth: 280,
    padding: 12,
  },
  grid: {
    gridTemplateColumns: "repeat(4, 1fr)",
    gap: 8,
  },
  icon: {
    width: 40,
    height: 40,
  },
  label: {
    fontSize: 12,
  },
};

Large Icons

const largeIconStyles: DropdownStyles = {
  container: {
    minWidth: 480,
  },
  grid: {
    gridTemplateColumns: "repeat(3, 1fr)",
    gap: 20,
  },
  item: {
    padding: 16,
  },
  icon: {
    width: 80,
    height: 80,
    borderRadius: 12,
  },
  label: {
    fontSize: 16,
    fontWeight: 600,
    marginTop: 8,
  },
};

Examples

CDN with Custom Styles

<script>
  const customStyles = {
    container: {
      background: "#f8f9fa",
      borderRadius: 16,
      minWidth: 400,
    },
    grid: {
      gridTemplateColumns: "repeat(4, 1fr)",
      gap: 16,
    },
    icon: {
      width: 60,
      height: 60,
      borderRadius: 8,
    },
  };

  window.renderAppLauncher(
    "app-launcher",
    [
      {
        name: "App 1",
        icon: "/images/app1.jpg",
        url: "https://example.com/app1",
      },
      {
        name: "App 2",
        icon: "/images/app2.jpg",
        url: "https://example.com/app2",
      },
    ],
    {
      // Optional configuration
      svgColor: "#FF0000", // Red dots
      position: "right", // Position the dropdown
      dropdownStyles: {
        // Custom styles
        container: {
          background: "#f5f5f5",
        },
      },
    }
  );
</script>

License

This project is licensed under the MIT License.

Support

If you encounter any issues or have questions, please file an issue on the GitHub repository.