The Better Way to Load Images

Поділитися
Вставка

КОМЕНТАРІ • 127

  • @soto5987
    @soto5987 5 місяців тому +125

    progressive jpg and BlurHash exist ... and picture srcset

    • @icodefor
      @icodefor 5 місяців тому +5

      BlurHash is a pretty nice way to handle this considering the point is usually to reduce network latency

    • @NickHamilton88
      @NickHamilton88 5 місяців тому +10

      Expo image has a placeholder prop you can pass a blurhash into 😎

    • @alvesvaren
      @alvesvaren 5 місяців тому

      @@NickHamilton88next too

  • @BarakaAndrew
    @BarakaAndrew 5 місяців тому +40

    Just calculate blurhash on upload save it with the image or even use it as a name for the image.
    Also for resizing I just use flyimg in a docker container, one min to spin up and forget, no need to write any code. Handles all formats u can imagine, resizes quickly and doesn't hit your nextjs backend, spin once use forever for every site, from there its just dns settings on cloudflare.

    • @shamoilkhan888
      @shamoilkhan888 5 місяців тому

      Can you explain flyimg further? Is it a library?

    • @designerjehovah4453
      @designerjehovah4453 5 місяців тому +5

      create a tutorial to teach others...now that'd be beneficial

  • @menschentoaster
    @menschentoaster 5 місяців тому +42

    I haven't watched the video fully, but I'd like to have a quick rant:
    0:25 it's a thing I really hate to see in the Next.js community. “The next/image can get very expensive very fast”. The only thing it costs is server performance and storage for the images. And if your cache is persistent, you don't really have to worry about performance. So there is no real downside to using next/image.
    What you meant to say is, “On certain providers like Vercel, next/image can get very expensive very fast”. Next.js and Vercel, although from the same Company, are not equal. And I really dislike that everything about Next.js must always be about Vercel.
    Edit: You basically made (more or less) what next/image is. next/image does the exact same thing. You just need to run it somewhere else than Vercel. It's good you show the community, how something like this is made. But please, don't hint to your community that you must run on Vercel.

    • @paw565
      @paw565 5 місяців тому +3

      Goat comment sir

    • @RazexFX
      @RazexFX 5 місяців тому +1

      Not in a single word did Josh mention that for this feature the project needs to be run on Vercel. Chill.

    • @menschentoaster
      @menschentoaster 5 місяців тому +7

      @@RazexFX He indirectly did. He said next/image was not a good option because of its cost. If not run on Vercel, it costs nothing/exactly the same as his implementation.

    • @raves_r3177
      @raves_r3177 5 місяців тому

      if the website is not hosted on vercel do I still get the optimization from image component or not

    • @paw565
      @paw565 5 місяців тому

      @@raves_r3177 yes

  • @vinniv6806
    @vinniv6806 5 місяців тому +58

    BlurHash,ThumbHash anyone? the wheel doesn't need to be reinvented...

    • @anotherzane
      @anotherzane 5 місяців тому +4

      Ofcourse there are better solutions but I think the point is to educate people who are new about how you can easily put together things like this yourself

    • @designerjehovah4453
      @designerjehovah4453 5 місяців тому

      this is a resource platform...we always need solutions however they might be to problems devs encounter.

    • @cyber-man
      @cyber-man 5 місяців тому +4

      Reinventing the wheel makes you a better programmer

    • @virtual5754
      @virtual5754 5 місяців тому

      Reinventing wheel provides you with work in moment and in future. Need to justify your salary

  • @andre__b
    @andre__b 5 місяців тому +32

    So now its 2 requests instead of 1 for an image, and a node server backend instead if static cached content

    • @EinChris75
      @EinChris75 5 місяців тому +11

      Yes it is. Not to mention all that additional JS crap you need to load as well.

  • @zakir.nuriiev
    @zakir.nuriiev 5 місяців тому

    Thanks a lot Josh! It is a simple but cool trick!

  • @akunbeben
    @akunbeben 5 місяців тому

    Thanks Josh! I just realized it could be implemented in any stack for sure!

  • @patrickle2500
    @patrickle2500 5 місяців тому

    Yes there exist other packages, but I appreciate the rawness of this

  • @ernst367
    @ernst367 5 місяців тому +5

    Josh saving the day🎉. Thanks buddy

  • @armandsalle8447
    @armandsalle8447 5 місяців тому +19

    Really nice trick! Do you plan to do a video about caching with Cloudflare? ❤

    • @alejandroechavarria539
      @alejandroechavarria539 5 місяців тому +2

      Josh, please do a video on cloudflare

    • @rashidshahriar7913
      @rashidshahriar7913 5 місяців тому

      yes we need one

    • @jamesfoley4426
      @jamesfoley4426 5 місяців тому

      I would like to see you do a video on caching using cloudflare

    • @h45e32u4f
      @h45e32u4f 5 місяців тому

      All types of caching in next js, and cloudflare with examples. I would get on my knees for it.

    • @belkocik
      @belkocik 5 місяців тому

      Cloudflare 🔥🔥

  • @whynot9963
    @whynot9963 5 місяців тому +13

    Why are we trying to solve issues that have been solved for years 😳

    • @odra873
      @odra873 5 місяців тому +1

      So that new people can earn money with it?

    • @EinChris75
      @EinChris75 5 місяців тому +1

      Because we unsolved those issues by adding tons of arbitrary layers of stupid and slow code, because people think that adding another layer of abstraction makes anything faster, more secure or easier to maintain. I am officially old now.

  • @griffin955
    @griffin955 5 місяців тому

    I feel this is definitely a "interesting to know but not amazing enough to use over the conventional way which is much easier" type of thing.

  • @toruwalt
    @toruwalt 5 місяців тому +4

    You look like Sid from Toy Story

  • @fadio_
    @fadio_ 5 місяців тому +1

    You should always process and re-encode uploaded images, as they might be hacked and contain injected javascript, you should also strip the extension and save them with random chars

    • @Pipu748
      @Pipu748 5 місяців тому

      Hello. Kind sir. This comment has make me curious. While I do some reasearch about what u've said, because i want to learn, not because i believe u wrong. I would love if u could provide me with some buzzwords about the subject or any place to get info about this. Thank you.

    • @fadio_
      @fadio_ 5 місяців тому

      ​@@Pipu748 Basically, you would want to filter any potential threat, do these:
      1- Check uploaded file extension and make sure it's one that you allow.
      2- Don't trust the extension alone, check the MIME type of the image.
      3- Check the image size (width and height) to make sure there's an image in there.
      4- Re-encode the image (ex: to webp), and remove any potential harmfull data in the exif metadata.
      5- Resize the image to a certain size.
      5- Generate a random string as the new image name, and save the image to disk outside a publically accissable folder. (save it without an extension for extra safety)
      6- Serve the images through code instead of a direct link. (there will be no direct link when you save them in non-public folders)
      Use sharp library for all of the above

    • @fadio_
      @fadio_ 5 місяців тому

      @@Pipu748 I replied but my comment got removed. Twice!

    • @fadio_
      @fadio_ 5 місяців тому

      @@Pipu748 Basically, you would want to filter any potential threat, do these:
      1- Check uploaded file extension and make sure it's one that you allow.
      2- Don't trust the extension alone, check the MIME type of the image.
      3- Check the image size (width and height) to make sure there's an image in there.
      4- Re-encode the image (ex: to webp), and remove any potential harmfull data in the exif metadata.
      5- Resize the image to a certain size.
      6- Generate a random string as the new image name, and save the image to disk outside a publically accissable folder. (save it without an extension for extra safety)
      7- Serve the images through code instead of a direct link. (there will be no direct link when you save them in non-public folders)
      Use sharp library for all of the above

  • @the-boring-guy-1
    @the-boring-guy-1 5 місяців тому +11

    For everyone who is confused whether the Image optimization is a paid service or not, if you are hosting your site on vercel then after 1000 image optimization your images won't load and give out an Error 401: Payment required. If you are hosting on your own server or any other service, then you are probably fine.

    • @raves_r3177
      @raves_r3177 5 місяців тому

      if not hosting on vercel, that means i dont get the image optimization right? (unless i set up my own image optimization)

    • @devfren
      @devfren 5 місяців тому

      @@raves_r3177yup

    • @the-boring-guy-1
      @the-boring-guy-1 5 місяців тому

      @@raves_r3177 No, vercel limits the image optimization to 1000 but if you are using netlify or you own hosting then these limits won't apply.
      is a part of NextJS framework, it's not a vercel "feature".

    • @richmail
      @richmail 5 місяців тому

      ​@@raves_r3177as long as you use the Next Image component and you're hosting on your own server, you will get image optimization no matter how many images you have.

    • @reze_dev
      @reze_dev 5 місяців тому

      I never use vercel, so if i use vercel, using next/image is bad idea for nextjs?

  • @WhatYouKnoww
    @WhatYouKnoww 5 місяців тому

    thanks joshh

  • @sunequist2180
    @sunequist2180 5 місяців тому

    Just load it in from cache or the assets folder, and if you want to optimize for a large amount of images, and use webassembly to load 100' of images quickly.
    P.S. webasm isn't worth it, if it's just an image or two, only do if it runs up in this 30-50s ish (amount of images).

  • @cleverprogrammer7409
    @cleverprogrammer7409 5 місяців тому

    Josh i can't believe what you did awesomely. josh could you make Hono crash course

  • @subrat_samal
    @subrat_samal 5 місяців тому

    my man has finally upgraded his pc 🎉

  • @irfansaeedkhan7242
    @irfansaeedkhan7242 5 місяців тому

    thank you

  • @nick-ui
    @nick-ui 5 місяців тому

    Shrek example is siick ;)

  • @MrSofazocker
    @MrSofazocker 5 місяців тому

    The "better" way would be using progressive refinement of an image format such jpeg (PJPEG)

  • @MrJfergs
    @MrJfergs 5 місяців тому

    What about just using unpic for compression and multiple image sources on your own device?

  • @inderpalsingh3387
    @inderpalsingh3387 4 місяці тому

    Will this technique improve the Largest Contentful Paint (LCP) score?

  • @abdullahiali-n2u
    @abdullahiali-n2u 5 місяців тому

    i think there is one for that [blurhash], don't reinvent the wheel

  • @lazyplayer1
    @lazyplayer1 5 місяців тому +5

    That sherk at 7:20 literally made me scream

  • @dreamsachiever212
    @dreamsachiever212 5 місяців тому +4

    WAIT! so using the next.js image component is a paid feature after 1000 ? what if the code is NOT hosted on vercel? what am i missing here?

    • @haikalgakbar
      @haikalgakbar 5 місяців тому +2

      When you host your site on Vercel, the first 1000 images are optimized for free when using the Image component. Hosting elsewhere doesn't include this optimization, but you can still use the Image component at no cost.

    • @raves_r3177
      @raves_r3177 5 місяців тому +1

      @@haikalgakbar does that mean that after the first 1000 images, vercel will just use the normal img tag or still the image component but without optimization

    • @devfren
      @devfren 5 місяців тому

      @@raves_r3177no they stop rendering your images unless you pay them😢

    • @haikalgakbar
      @haikalgakbar 5 місяців тому

      @@raves_r3177 if you exceed the limit Vercel will throw 402 status code and show alt text instead of the image

    • @dreamsachiever212
      @dreamsachiever212 5 місяців тому

      @@haikalgakbar ok thank you. These companies are greedy

  • @oopss794
    @oopss794 26 днів тому

    You claimed that using next js Image component is expensive but you still use it

  • @zoefyt
    @zoefyt 5 місяців тому +2

    He was in toystory?

  • @goodguyhenri2090
    @goodguyhenri2090 5 місяців тому +1

    The Ideas in the video are very reasonable but I think there will be some performance problems, especially at scale:
    1. reading the image from the filesystem
    in my testing with a similar approach I got VERY inconsistent read times with fs. I‘d at least recommend using a db for that. Postgres even has a proper type for storing byte code.
    2. using sharp for resizing.
    Although sharp is quite performant, depending on the image size you might run into high latency by using sharp on every request.
    Although I think all options here aren‘t to great…

  • @Amin-uo5un
    @Amin-uo5un 5 місяців тому

    sweet

  • @wilydeee
    @wilydeee 5 місяців тому

    Video starts at 0:00

    • @berniko4954
      @berniko4954 5 місяців тому

      Thanks for the information, I did not know

  • @zinckk-1430
    @zinckk-1430 5 місяців тому

    Hono deployed on cloudflare worker does not seem to support sharp, do you have any other solution

  • @abdelmounaimammari9064
    @abdelmounaimammari9064 5 місяців тому

    Josh moved to MAC !

  • @rorn-dev
    @rorn-dev 5 місяців тому

    is it work after run build as production ?

  • @faddoo
    @faddoo 5 місяців тому

    Does this impact on INP?

  • @okadz7037
    @okadz7037 5 місяців тому

    u r legendary 💫

  • @codesera9416
    @codesera9416 5 місяців тому

    Hi josh I'm trying to join your discord server but this invite link is invalid or has expired is showing

  • @ramez3038
    @ramez3038 5 місяців тому

    LIFE SAVER

  • @kristjanretter6851
    @kristjanretter6851 5 місяців тому

    the real mvp

  • @deezydoezeet
    @deezydoezeet 5 місяців тому

    Golden!

  • @miketoporkov1889
    @miketoporkov1889 5 місяців тому

    Maybe dumb question, but still, since loading big image always takes some time, can we transform the first received portion of buffer to convert to image placeholder instead? Like listening on loading events or sth...

    • @miketoporkov1889
      @miketoporkov1889 5 місяців тому

      Ehhhh, there are only "load" and "loadstart" events, one when it's loaded and one for just notification that it started.... So nevermind, your way is the right one and only 😊, though can be improved by using srcset for different screens sizes)))

    • @miketoporkov1889
      @miketoporkov1889 5 місяців тому

      Also, instead of using pre-created image with low resolution, can be used randomly, created gradient then blurred, etc. Though it is not the best option, but still relevant for some designs.

  • @11WicToR11
    @11WicToR11 5 місяців тому

    what do you pay for in Next Image? I thought it just caches stuff on your own server so that call to "random_url/image.png" actually hits your own server where its already cached ready to go.
    Where is that cost? What am I missing?

  • @swarajbachu8551
    @swarajbachu8551 5 місяців тому

    code for this ?

  • @orzarhi
    @orzarhi 5 місяців тому

    👑👑👑

  • @nandakishoregowdag
    @nandakishoregowdag 5 місяців тому

    Hi Josh , how do I contact you ?

  • @yalamanchilivenusai8874
    @yalamanchilivenusai8874 5 місяців тому

    Bro where is your old laptop??? I miss it lol

  • @bhxzbcx
    @bhxzbcx 5 місяців тому

    4:16 great! now someone will get into your server. never ever trust user input with things like this

  • @dowellkin
    @dowellkin 5 місяців тому +1

    Or just use blurhash

  • @Hexalyse
    @Hexalyse 5 місяців тому +3

    Why are my comments disappearing by magic? 🤔

    • @Hexalyse
      @Hexalyse 5 місяців тому

      @@jw200 UA-cam themselves ? Not even the channel's owner ? Wait... how does it make sense? It sounds absolutely crazy

  • @_nikeee
    @_nikeee 5 місяців тому +1

    You can just host imgproxy yourself. No need to build a service.

  • @qudusayo
    @qudusayo 5 місяців тому +1

    It’s so nice seeing this first 🤡

  • @chonkusdonkus
    @chonkusdonkus 5 місяців тому

    or just use JPEG XL, oh wait, google killed that

  • @kszyh_
    @kszyh_ 5 місяців тому +1

    Nothing new, There are better approaches

  • @EinChris75
    @EinChris75 5 місяців тому

    What a sad state that internet has reached... paying to deliver images onto a web page because of some bloatet concept of software development.
    Not your fault, Josh, you are just delivering the sad news.

  • @Mheme-f7n
    @Mheme-f7n 5 місяців тому +13

    Good to know, but too lazy to implement

    • @ahsookee
      @ahsookee 5 місяців тому +5

      Average js developer:

    • @rabi7331
      @rabi7331 5 місяців тому

      @@ahsookee for real

  • @kasutudotdev
    @kasutudotdev 5 місяців тому

    give me that

  • @shakapaker
    @shakapaker 5 місяців тому

    Do we need to add an unoptimized image prop to the next image?

  • @coding-master-shayan
    @coding-master-shayan 5 місяців тому

    Wow you stole that image loading idea from web dev simplified 😂 but with a bit different way 👏

  • @raves_r3177
    @raves_r3177 5 місяців тому

    doesnt Plaiceholder already do this

  • @thekwoka4707
    @thekwoka4707 5 місяців тому

    ...just srcset and don't try this bullshit loading state.

  • @falahisnan4582
    @falahisnan4582 5 місяців тому +1

    First

  • @josh4play.youtube
    @josh4play.youtube 5 місяців тому

    thank you