Using async generators to stream data in JavaScript

Поділитися
Вставка
  • Опубліковано 30 вер 2024
  • 🔗 Playlist for this series
    • Iterators in JavaScrip...
    🔗Code from the episode
    beta.observabl...
    🔗 (Patrons only) Official discussion topic for this episode on the Fun Fun Forum:
    www.funfunforu...
    🔗 Support the show by becoming a Patreon
    • Patreon + Fun Fun Foru...
    🔗 mpj on Twitter
    / mpjme
    🔗 Help translate the show to your language
    www.youtube.com...
    We've been looking as async iterators and sync iterators in JavaScript but we've not yet looked at Async Generators, which is honestly what I've been building up to! Async Generators in JavaScript are pretty amazing.
  • Наука та технологія

КОМЕНТАРІ • 81

  • @tommytomtomtomestini3894
    @tommytomtomtomestini3894 6 років тому +16

    That "pageIndex = pageIndex +1" line made me vomit a little lol

    • @funfunfunction
      @funfunfunction  6 років тому +50

      I have a bit of a phase where I'm experimenting with avoid the ++ operator. The reason is that I've found that most people don't understand what it actually does. If you ask most programmers what ..
      let x = 1
      let a = x++
      let b = ++x
      ... they'd not be able to answer fast and with confidence. It's not too bad ot use in this case, but I'm less and less concerned about verbosity and more and more concerned about using the simplest tool lately.

    • @vidhill
      @vidhill 6 років тому +2

      I heard it was slower also?

    • @vidhill
      @vidhill 6 років тому

      my info is out of date I'd say, jsperf.com/i-vs-i-i-1

    • @mserrano
      @mserrano 6 років тому +13

      Not really bothered by it, but pageIndex += 1 would have been my choice

    • @leonsponzoni
      @leonsponzoni 6 років тому

      let a = x
      x++
      x++
      let b = x
      "There solved." I like when people separate using from updating.

  • @mserrano
    @mserrano 6 років тому +16

    One of my favorite videos so far! This whole iterators and generators series has been extremely useful to me

  • @DrempDK
    @DrempDK 6 років тому +8

    Really hyped about higher order async iterables!

  • @steveneeson5698
    @steveneeson5698 6 років тому +5

    4:13 that sound is killing me :D
    Thanks, awesome video.
    What about video around Proxy?

  • @devpatel6918
    @devpatel6918 3 роки тому +1

    am i alone who think that he looks like tony starck?

  • @ReviewReactReject
    @ReviewReactReject 6 років тому +2

    Hey MPJ great video as always! can you do a vdo on socket io in-depth, please? pls show an example on nodejs! :)

  • @severancestreet
    @severancestreet 6 років тому +3

    What's with the `function flickrTagSearch(tag, page)` defined inside the `function flickrTagSearch(tag)`?

    • @funfunfunction
      @funfunfunction  6 років тому +4

      I generally define functions within functions to indicate that they have no business being called from outside the function.

  • @filippomenis4438
    @filippomenis4438 5 років тому +2

    Hi Mpj!
    I work with nodejs, where the concept of streams is already integrated into the language.
    Since an async generator expresses the concept of streams, does make sense to use it in nodejs since the streams already exists? If yes, when?
    Congratulations for the videos!

    • @amitgujar6231
      @amitgujar6231 2 роки тому

      even I don't get the exact sense of using a generator. everyone is explaining the hello world program with genrator but nobody showing the exact practical use case.

  • @samirm
    @samirm 6 років тому +3

    Please do a video on the stream implications you mentioned at the end

  • @nendo502
    @nendo502 6 років тому +2

    just try to add some cache to show the image when fully loaded,
    the flickering from flickr hurts my eyes XD
    for await(const url of cats) {
    const cache = new Image()
    const img = new Image(150, 150)
    cache.src = url
    cache.onload = () => img.src = cache.src
    yield img
    }

    • @funfunfunction
      @funfunfunction  6 років тому +2

      We’ll actually be adding exactly this in the next episode, but as a higher-order generator!

    • @nendo502
      @nendo502 6 років тому

      awesome!!

  • @sameedkhan9928
    @sameedkhan9928 6 років тому +1

    Good Monday morning! Great video! genuinely enjoying this series and looking forward to higher order async generators. Pretty much opened up my youtube channel to leave this comment.

  • @lanogoodman1157
    @lanogoodman1157 5 років тому

    Am I the only one who does not understand how this `photoindex++ / cache[photoindex] / photoindex=0` thing works?

  • @awumsuri
    @awumsuri 6 років тому

    You are a genius ... When I get $$$ I will become a patron. In the meantime please accept my rainbows and unicorns🌈🦄

  • @DucinDev
    @DucinDev 6 років тому +1

    hmm, not sure if we can _replace_ rxjs/bacon/etc. with async iterators, becuase Rx streams are push-based and the streams you defined (async iterators) are pull-based. The nature is different. The difference is in who holds the control flow. In pull-based, the owner of the iterator controls how many items can be consumed (how many cat pictures can you see in a period of time in order to get satiscaftion), whereas in push-based the stream is an observable, so flow is inverted (IoC), the platform/lib controls it and invokes the subcriber automatically (the cat pictures change depending on the device and its settings). Both are iterators and both are async, they just differ in who holds the control: you (then it's good that you HAVE it under control), or the platform (IoC, then it's good that you DON'T HAVE to have control) ;)
    In order to actually _replace_ RxJS with async iterators, you'd have to (1) re-implement all operators (just as rx did), (2) implement observable/observer pattern (just as rx did) so that the stream is lazy as long as nobody subscribed to it. So although you do have the low-level primitives in your hands, you'd have to reimplement the missing higher-level traits.

    • @funfunfunction
      @funfunfunction  6 років тому

      Hmm. Maybe. But it might also be like saying that we cannot replace SOAP with REST. Sometimes the constraint and simplicity can be very useful. Rx suffers greatly from it's absolutely absurd surface API area. node.js streams supports both push and pull and are SO hard to grasp. What appeals to me about async generators is that they are very simple atoms.

    • @DucinDev
      @DucinDev 6 років тому

      fully agree with simplicity factor. The best illustration for it, I can think of, are promises - they are very constrained (always eager, only 1 item, non-reusable, access to previous step only, .then which actually _should be_ 3 different methods, etc.) - and that's the key for their ease of use and popularity.
      However, IoC is less a matter of taste, preferences and just API. It's as if you'd have to check if there is any new post published on a site or checking if an e-commerce product is finally available, instead of subscribing to a newsletter or a product alert. It is _doable_ (to keep on pulling, when the other side should push to you), yet it makes things really cumbersome. IMO it's a big difference - it's not a matter of API, but the mechanics.
      Anyway, nice recording, as usual :)

  • @MaxDavydov-r2k
    @MaxDavydov-r2k 6 років тому

    By the way, all readable streams in Node.js 10 are async iterators! So we can:
    for await (let c of fs.createReadStream(filename) { console.log(c) }
    see: twitter.com/mikeal/status/993925507967205378

    • @funfunfunction
      @funfunfunction  6 років тому +1

      Wow, are they already async iterators? Thats amazing!

  • @displayblock6696
    @displayblock6696 5 років тому

    why i got this result?
    {stat: "fail", code: 100, message: "Invalid API Key (Key not found)"}

    • @funfunfunction
      @funfunfunction  5 років тому +1

      That error message seems rather straightforward, it says exactly what the error is. Did you read the first paragraph that says NOTE in the observable?

  • @uquantum
    @uquantum Рік тому

    Thanks Mattias Petter. I learned a lot. At the end of the journey you take us on, I gazed with amazement at the sleekness of the final async generator code. Like getting to the top of a mountain, completely relaxed while we take in the wonderful view of infinity around us (infinite cat images!)

  • @alessiobreviglieri4154
    @alessiobreviglieri4154 6 років тому

    Video suggestion: Proxy object in JavaScript, Vue 3 implementing his new engine with Proxies and IE slowly diyng will boost the usage of this feature.

  • @mankindbg
    @mankindbg 6 років тому

    Mattias you are a fucking genius!

  • @venkateshrajendran3235
    @venkateshrajendran3235 5 років тому

    Awesome stuff. Is it possible to use Async Generator with angular data tables. If No, What would be the alternative way to do it.

  •  6 років тому

    I like to think of the need for iterators as the freedon from the code structure, to peek a "register" whenever I want it:
    In a loop, your actions are constraint to what you can do between the control line (for/while/do/etc.) and the end of the cycle, while an iterator can be use at any moment in your whole app, and treat each element of the data set in a very free dynamic way.

  • @ajalbani
    @ajalbani 4 роки тому

    Mpj. I can't thank you enough fir teaching me async generators

  • @estephebouvet2147
    @estephebouvet2147 6 років тому +1

    To bad you didn't show how to delegate the paging (inner loop) to another async generator with yield* ;-)

    • @funfunfunction
      @funfunfunction  6 років тому +2

      Haha the episode is already 30 minutes long, and you want me to cram more in there?

    • @Dalendrion
      @Dalendrion 6 років тому +1

      On the next episode of FFF: mapping all integer numbers to arrays of URLs with higher order iterables. :P

    • @estephebouvet2147
      @estephebouvet2147 6 років тому

      Knowledge is a never ending quest

    • @DucinDev
      @DucinDev 6 років тому

      I went down that path once and ended up implementing two different streaming libraries... The video would be a killer then!

  • @Luxcium
    @Luxcium 5 років тому

    A thing close to infinity 5:55 the JavaScript infinity or the mathematical infinity ?

  • @obedm503
    @obedm503 6 років тому

    Now async generators make sense and seem super useful. Before, they where just a new useless feature

  • @SiriusScaper
    @SiriusScaper 6 років тому

    Where I am in the bootcamp I am attending these videos are very valuable to me! Can't wait for higher order async iterables!

  • @qwarlockz8017
    @qwarlockz8017 6 років тому

    Awesome vid! I am going to go back and re watch the ramp up vids for this to get more out of it. Really cool to watch a full process! thanks!

  • @Dr3amDisturb3r
    @Dr3amDisturb3r 5 років тому

    I wonder if someone recognized his cat in the video. lol

  • @LarryDiver
    @LarryDiver 5 років тому

    Really cool channel! Thank you, thank you, thank you :)

  • @riccardopolacci6501
    @riccardopolacci6501 5 років тому

    Best iterator/generator explanations in the Internet. Thanks!

  • @thierryhermitte9784
    @thierryhermitte9784 4 роки тому

    I'm not really understanding how using iterators differs from using arrays in a stream like you explained, if you created an iterator that is iterating over an array/cache. Thanks, great work btw

    • @ratias0
      @ratias0 2 роки тому

      If the array/list/collection is so big that the RAM available is not enough to handle it, you need an iterator. Why? Well because, after all, it is necessary to load a collection into memory before iterating over it.
      An iterator is useful if your dataset is 10-20 Gb or even bigger. In fact, with an iterator, you might be free to iterate over an infinite collection.

  • @100jakkk
    @100jakkk 6 років тому

    I missed something or you removed your genious intro? :)

  • @dctmbu
    @dctmbu 6 років тому

    can we talk about this wall light? whats going on with Swedens, where did you get this? I want one and become a youtuber :D

  • @agorafobicoMusica
    @agorafobicoMusica 6 років тому

    23:10 Maybe you could do yield* pageData

  • @sebastiendeseille9890
    @sebastiendeseille9890 6 років тому

    OMG, it seem so powerful in so few lines. \o/ Yatsa!

  • @Zie1u
    @Zie1u 6 років тому

    What is the editor/plugin that you use for writing the js code and getting a function result next to the line where it's executed?

  • @andreyshedko6155
    @andreyshedko6155 6 років тому

    Hey MPJ!
    Currently I'm translating subtitles of this video to Russian and on 0:40 you said "for loop provide iterator"? Am I right? If it's true, that's actually not correct, for loop do not have and cannot have iterator, but its using iterator in order to iterate over collection's items.

    • @funfunfunction
      @funfunfunction  6 років тому

      Hmm, no, I don't say that. My wording is a bit dumb though.
      "We talked about how you can iterate ANYTHING with things such as the for ... of loop because THEY provide an iterator."
      THEY refers to ANYTHING, not the for...of loop. If I had scripted that sentence I would have written something like...
      "We talked about how you can iterate over anything that with the for ... of loop as long as that thing provides an iterator"

    • @andreyshedko6155
      @andreyshedko6155 6 років тому

      Thanks, got it.

  • @jean-baptistedavid6686
    @jean-baptistedavid6686 5 років тому

    amazing video ! thanks !

  • @serartmar
    @serartmar 6 років тому

    nice videos, thank you) what about continuing "Top 8 developer habits" series?

    • @funfunfunction
      @funfunfunction  6 років тому +1

      Yeah, I probably should. I'm also thinking about starting a series titled "how to constantly start series and never finish them"

  • @davidmaceachern7965
    @davidmaceachern7965 6 років тому

    Diggin' the Moderat.

  • @erwinmesi
    @erwinmesi 6 років тому

    MPJ's avatar looks like RDJ XD

  • @teeodoubled3000
    @teeodoubled3000 6 років тому

    Great series! Thank you!!

  • @jotaprende
    @jotaprende 6 років тому

    in what cases in your past, would you liked to use this streams iterators?

    • @funfunfunction
      @funfunfunction  6 років тому

      Any time I'd used streams/observables. Node streams, bacon, highland, Rx, knockout

    • @jotaprende
      @jotaprende 6 років тому

      i mean sometime, you wish you had this technology in the past.

    • @funfunfunction
      @funfunfunction  6 років тому

      Yeah. I’ve definitely felt that Highland, Rx etc could have benefited from a dedicated syntax and being built into the language. Especially from a debuggability standpoint - stream libraries effectively make you lose the stack trace, so in the same way that es6 promises made promises massively better simply because chrome dev tools added native debugging for them.

  • @Its.Me007
    @Its.Me007 6 років тому

    Good Monday Morning :)

  • @JoshSandlin
    @JoshSandlin 6 років тому

    The `Code from the episode` link 404's :(

  • @youjean83
    @youjean83 4 роки тому +1

    Why explaining simple things so very comlicated and time consuming?
    explaination in 1 minute:
    async function* generator(counter: number) {
    while(counter < 5 ) {
    yield await (await fetch(`jsonplaceholder.typicode.com/posts/${counter}`)).json()
    counter++
    }
    }
    const gen = generator(1)
    for await (const item of gen) {
    console.log(item)
    }
    keep the examples short, brief and compact.
    just my opinion..

    • @learnbit_bo
      @learnbit_bo 3 роки тому

      you really miss the point here, he is explaining the concept in a broader way anyways you can limit yourself knowing only how it works.

  • @greob
    @greob 6 років тому +1

    It looks a lot like Python's iterators / generators (yield) and asyncio (await).

    • @DucinDev
      @DucinDev 6 років тому

      lots of ES6 features were copied (or at least inspired) by python. Another one is destructuring.