Story Details

  • Show HN: JavaScript PubSub in 163 Bytes

    Posted: 2025-03-31 01:37:55

    This project presents a tiny JavaScript PubSub implementation weighing in at a mere 163 bytes. It provides basic publish and subscribe functionality, allowing developers to broadcast messages on specific topics (strings) and have subscribed functions execute when those topics are published to. The library focuses on extreme minimalism, sacrificing features like wildcard subscriptions or complex message filtering for an incredibly small footprint. This makes it suitable for resource-constrained environments or situations where a full-fledged PubSub library would be overkill.

    Summary of Comments ( 20 )
    https://news.ycombinator.com/item?id=43529774

    Hacker News users discussed the minimalist JavaScript pub/sub implementation, praising its small size and cleverness. Some questioned its practicality for complex applications, suggesting larger libraries like mitt might be more suitable due to features like wildcard subscriptions and unsubscribing. Others debated the value of minimizing bundle size in modern web development, with some arguing that 163 bytes is a negligible saving. A few commenters suggested improvements or alternative implementations, including using a Map instead of an object for storing subscriptions to avoid prototype pollution issues. Overall, the reception was positive, though tinged with pragmatic considerations regarding real-world usage.