15 comments

  • sltkr2 days ago
    The API feels wrong. The object that was passed to pub() is the object that should be received by the callback passed to sub().<p>The use of EventTarget&#x2F;CustomEvent is an implementation detail; it should not be part of the API.<p>As a result, every callback implementation is larger because it must explicitly unwrap the CustomEvent object.<p>Essentially, the author made the library smaller by pushing necessary code to unwrap the CustomEvent object to the callsites. That&#x27;s the opposite of what good libraries do!<p>The mentioned nano-pubsub gets this right, and it even gets the types correct (which the posted code doesn&#x27;t even try).
    • nine_k1 day ago
      The point of this exercise, to my mind, is to show the utter simplicity of pub-sub. Such code belongs to the API documentation, like the code snippets on MDN.<p>Proper code would have expressive parameter names, good doc comments, types (TS FTW) and the niceties like unpacking you mention. One of them would be named topics mapped to EventTargets, so that publishers and subscribers won&#x27;t need to have visibility into this implementation detail.
    • hmmokidk2 days ago
      I disagree with the first point, and agree with the second.<p>The usage, to me, feels appropriate for JS.<p>I agree that event.detail should be returned instead of the whole event. Can definitely save some space at the callsites there!
  • zeroq2 days ago
    In similar spirit, a minimal implemention of KV store, in 22 bytes:<p><pre><code> export default new Map</code></pre>
  • arnorhs2 days ago
    I&#x27;m not a huge fan of using CustomEvent for this.. esp. in terms of interoperability (which for these &lt;kb challenges probably doesnt matter)<p>personally, i&#x27;ll just roll with something like this which also is typed etc:<p><pre><code> export function createPubSub&lt;T extends readonly any[]&gt;() { const l = new Set&lt;(...args: T) =&gt; void&gt;() return { pub: (...args: T) =&gt; l.forEach((f) =&gt; f(...args)), sub: (f: (...args: T) =&gt; void) =&gt; l.add(f) &amp;&amp; (() =&gt; l.delete(f)), } } &#x2F;&#x2F; usage: const greetings = createPubSub&lt;[string]&gt;() const unsubscribe = greetings.sub((name) =&gt; { console.log(&#x27;hi there&#x27;, name) }) greetings.pub(&#x27;Dudeman&#x27;) unsubscribe()</code></pre>
    • Joeri2 days ago
      If listeners of this implementation aren’t unsubscribed they can’t be garbage collected, and in a real world codebase that means memory leaks are inevitable. EventDispatcher has weak refs to its listeners, so it doesn’t have this problem.
      • AgentME1 day ago
        The listeners can be garbage-collected if the `greetings` publisher object and any unsubscribe callbacks are garbage-collectable. This is consistent with normal Javascript EventTargets which don&#x27;t use weak refs.<p>If only weak refs were kept to listeners, then any listeners you don&#x27;t plan to unsubscribe and don&#x27;t keep that callback around will effectively auto-unsubscribe themselves. If this was done and you called `greetings.sub((name) =&gt; console.log(&quot;hi there&quot;, name));` to greet every published value, then published values will stop being greeted whenever a garbage collection happens.
        • arnorhs1 day ago
          This is correct.<p>The subscribers are unlikely to be garbage collected with a weak ref as long as something else is pointing to the subscriber, so it would be a viable alternative to manual unsubscriptions - but personally I prefer to give explicit lifecycle controls to the subscriber, if possible.
          • AgentME14 hours ago
            If the listener is a fresh function passed straight to the listen method as in my example, nothing else will have a reference to it besides the event target, and if that&#x27;s a weak reference then it will get collected eventually and effectively unsubscribed on its own. Weak references don&#x27;t make sense at all to use for general event listeners like this.
    • chrismorgan1 day ago
      Using the event dispatch mechanism is flat-out bigger, anyway. Here’s the interface of the original script (that is, global pub&#x2F;sub functions taking a name), except that the receiver site no longer needs to look at the .detail property so it’s better:<p><pre><code> let t={}; sub=(e,c)=&gt;((e=t[e]??=new Set).add(c),()=&gt;e.delete(c)); pub=(n,d)=&gt;t[n]?.forEach(f=&gt;f(d)) </code></pre> The original was 149 bytes; this is 97.<p>(The nullish coalescing assignment operator ??= has been supported across the board for 4½ years. Avoiding it will cost six more bytes.)
      • ftigis1 day ago
        This isn&#x27;t the same though. With EventTarget, if one of the callback throws, the later callbacks would still get called. With yours the later callbacks don&#x27;t get called.
        • chrismorgan1 day ago
          True, I forgot about that. Habit of working in Rust, perhaps, and generally avoiding exceptions when working in JavaScript.<p>Well then, a few alternatives to replace f=&gt;f(d), each with slightly different semantics:<p>• async f=&gt;f(d) (+6, 103 bytes).<p>• f=&gt;{try{f(d)}catch{}} (+14, 111 bytes).<p>• f=&gt;setTimeout(()=&gt;f(d)) (+16 bytes, 113 bytes).<p>• f=&gt;queueMicrotask(()=&gt;f(d)) (+20 bytes, 117 bytes).
    • nsonha1 day ago
      if one listener throws it will break the entire channel
  • est2 days ago
    TIL CustomEvent<p><a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;API&#x2F;CustomEvent&#x2F;CustomEvent" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;API&#x2F;CustomEvent...</a>
    • bodantogat2 days ago
      Incredibly useful, especially with React, where the Context API, state lifting, and prop drilling often feel clunky. That said, it can lead to messy code if not carefully managed.
      • jilles2 days ago
        Bingo! Having tons of `CustomEvents` with arbitrary handlers gets unwieldy. One way we &quot;solved&quot; this is by only allowing custom events in a `events.ts` file and document them pretty extensively.
  • test10722 days ago
    Perhaps &quot;eventlistener&quot; word can be extracted, and dynamically called as string to reduce bytes
    • chrismorgan1 day ago
      This has been a popular technique at times, but it tends to increase compressed sizes: gzip and similar are better at common string deduplication, having lower overhead. Such shenanigans are also bad for performance, especially in hot paths due to making it harder for the browser to optimise it.
    • hmmokidk2 days ago
      You joke, but I think about things like this...a lot.
  • thewisenerd1 day ago
    good to know pub-sub shenanigans are ubiquitous lol<p>here&#x27;s my implementation from a while back with `setTimeout` like semantics; used it to avoid prop-drilling in an internal dashboard (sue me)<p><a href="https:&#x2F;&#x2F;gist.github.com&#x2F;thewisenerd&#x2F;768db2a0046ca716e28ff14be6c28538" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;thewisenerd&#x2F;768db2a0046ca716e28ff14b...</a>
    • tubs1 day ago
      <p><pre><code> sub =&gt; ref = 0 sub =&gt; ref = 1 unsub(0) sub =&gt; ref = 1 (two subs with same ref!)</code></pre>
  • giancarlostoro2 days ago
    So why would I use this as opposed to BroadcastChannel?
    • ChocolateGod2 days ago
      Overkill if you don&#x27;t want to cross between browser frames I think, and I assume you can&#x27;t pass references.
  • nsonha2 days ago
    is this like left-pad but for EventTarget? If being small is the PRIMARY goal, then we are already able to do it without a wrapper.
    • singpolyma32 days ago
      I think that&#x27;s the (tounge in cheek) point being made
  • pjc502 days ago
    This is local pubsub within an application, right? i.e. corresponding to C#&#x27;s &#x27;event&#x27; keyword.
    • diggan2 days ago
      It seems like it yeah. I did something that looks similar at a surface-level (<a href="https:&#x2F;&#x2F;github.com&#x2F;victorb&#x2F;LightYearJS&#x2F;blob&#x2F;master&#x2F;test&#x2F;acceptance&#x2F;hello.js" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;victorb&#x2F;LightYearJS&#x2F;blob&#x2F;master&#x2F;test&#x2F;acce...</a>) around 11 years ago, but apparently called it an &quot;Event Dispatcher&quot;, something that might fit the submission project better.
  • h1fra2 days ago
    sure if you remove the whole native package it&#x27;s small
  • lerp-io3 days ago
    should this copy paste macro even be a package lol
    • hu33 days ago
      In the author&#x27;s defense they do write the entire source code in README.md, including source for alternatives.
    • nesarkvechnep3 days ago
      Of course not but it&#x27;s JavaScript, why don&#x27;t we pile more on top of the garbage mountain.
      • kreetx2 days ago
        Not expert enough in pub&#x2F;sub to tell whether these are sufficient, but perhaps these two functions could be folded into built-ins?
  • curtisszmania1 day ago
    [dead]
  • RazorDev2 days ago
    [flagged]
    • sltkr2 days ago
      Surely this comment was generated by an LLM?
  • tipiirai2 days ago
    Thanks! Definitely going to use `new EventTarget()` in Nue. So obvious.<p><a href="https:&#x2F;&#x2F;nuejs.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;nuejs.org&#x2F;</a>
  • blatantly2 days ago
    23 byte version:<p><pre><code> &#x2F;&#x2F; Lib code&gt;&gt; s={};call=(n)=&gt;{s[n]()} &#x2F;&#x2F; &lt;&lt; s.hello=()=&gt;console.log(&#x27;hello&#x27;); call(&#x27;hello&#x27;); delete s.hello;</code></pre>
    • pavlov2 days ago
      This is missing the subscription feature?<p>Multiple independent listeners should be able to attach a callback that fires when “hello” is called.