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

social-humour-card

v3.0.0

Published

Reusable card components for social humour content

Readme

Social Humour Card Component

A simple, reusable card component that can be imported into front-end frameworks like Angular, React, etc.

Features

  • Two card variants: dark (black background with white text) and light (white background with black text)
  • 2:3 proportions for optimal display
  • Text left-aligned from top
  • Small logo in the bottom left corner
  • Responsive design with padding on all sides
  • Framework agnostic - can be used with any front-end framework or vanilla JavaScript

Installation

npm install social-humour-card

Usage

HTML/CSS Usage

You can use the component directly in your HTML:

<div class="social-humour-card dark">
    <div class="card-content">
        Your content here
    </div>
    <div class="card-logo" style="background-image: url('path/to/logo.png');"></div>
</div>

JavaScript Usage

// Import the library
import { createSocialHumourCard } from 'social-humour-card';

// Create a card
const card = createSocialHumourCard({
    type: 'dark', // or 'light'
    content: 'Your content here',
    logoUrl: 'path/to/logo.png',
    container: '#card-container' // Optional: CSS selector for container
});

// If you didn't specify a container, you can append it manually
document.querySelector('#my-container').appendChild(card);

React Usage

// Standard import
import { SocialHumourCard } from 'social-humour-card';

// Or import directly from the React entry point
import { SocialHumourCard } from 'social-humour-card/react';

function App() {
    return (
        <SocialHumourCard 
            type="dark"
            content="Your content here"
            logoUrl="path/to/logo.png"
        />
    );
}

// You can also use children instead of content prop
function AppWithChildren() {
    return (
        <SocialHumourCard 
            type="dark"
            logoUrl="path/to/logo.png"
        >
            Your content here
        </SocialHumourCard>
    );
}

Angular Usage

NgModule-based Angular Projects

// In your module
import { SocialHumourCardModule } from 'social-humour-card/angular';

@NgModule({
    imports: [SocialHumourCardModule]
})
export class YourModule { }

// In your component template
<social-humour-card 
    [type]="'dark'"
    [content]="'Your content here'"
    [logoUrl]="'path/to/logo.png'">
</social-humour-card>

// Or with content projection
<social-humour-card 
    [type]="'dark'"
    [logoUrl]="'path/to/logo.png'">
    Your content here
</social-humour-card>

Standalone Angular Projects

For Angular 14+ projects using standalone components:

// In your standalone component
import { Component } from '@angular/core';
import { SocialHumourCardComponent } from 'social-humour-card/angular';

@Component({
    selector: 'app-my-component',
    template: `
        <social-humour-card 
            [type]="'dark'"
            [content]="'Your content here'"
            [logoUrl]="'path/to/logo.png'">
        </social-humour-card>
    `,
    standalone: true,
    imports: [SocialHumourCardComponent]
})
export class MyComponent { }

For Angular 16+ projects using standalone bootstrapping:

// In your main.ts file
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { importProvidersFrom } from '@angular/core';
import { SocialHumourCardModule } from 'social-humour-card/angular';

bootstrapApplication(AppComponent, {
    providers: [
        importProvidersFrom(SocialHumourCardModule)
    ]
});

// Then in your standalone AppComponent
import { Component } from '@angular/core';
import { SocialHumourCardComponent } from 'social-humour-card/angular';

@Component({
    selector: 'app-root',
    template: `
        <social-humour-card 
            [type]="'dark'"
            [content]="'Your content here'"
            [logoUrl]="'path/to/logo.png'">
        </social-humour-card>
    `,
    standalone: true,
    imports: [SocialHumourCardComponent]
})
export class AppComponent { }

For Angular 19+ projects using standalone components:

// In your standalone component
import { Component } from '@angular/core';
import { SocialHumourCardComponent } from 'social-humour-card/angular';

@Component({
    selector: 'app-my-component',
    template: `
        <social-humour-card 
            [type]="'dark'"
            [content]="'Your content here'"
            [logoUrl]="'path/to/logo.png'">
        </social-humour-card>
    `,
    standalone: true,
    imports: [SocialHumourCardComponent]
})
export class MyComponent { }

For Angular 19+ projects using standalone bootstrapping:

// In your main.ts file
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { provideHttpClient } from '@angular/common/http';

bootstrapApplication(AppComponent, {
    providers: [
        provideHttpClient()
        // No need to import SocialHumourCardModule as the component is standalone
    ]
});

// Then in your standalone AppComponent
import { Component } from '@angular/core';
import { SocialHumourCardComponent } from 'social-humour-card/angular';

@Component({
    selector: 'app-root',
    template: `
        <social-humour-card 
            [type]="'dark'"
            [content]="'Your content here'"
            [logoUrl]="'path/to/logo.png'">
        </social-humour-card>
    `,
    standalone: true,
    imports: [SocialHumourCardComponent]
})
export class AppComponent { }

API Reference

Card Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | type | string | 'dark' | Card type: 'dark' or 'light' | | content | string | '' | Text content for the card | | logoUrl | string | '' | URL for the logo image | | container | string | null | CSS selector for the container element |

Demo

A demo page is included in the package. After installation, you can find it at:

node_modules/social-humour-card/dist/demo.html

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

MIT