DON'T Serve Unoptimized Images - Webp, Srcset, ImageKit, and more!

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

ความคิดเห็น • 67

  • @nyarehd
    @nyarehd 3 ปีที่แล้ว +13

    Thanks for sharing.
    I've just finished my portfolio site and yes, images takes about 40% of loading time.
    This gonna be useful.

  • @1ku0k
    @1ku0k 2 ปีที่แล้ว +3

    You are the only image kit tutorial video on youtube... You should have a lot more hits!

  • @timbittins
    @timbittins 3 ปีที่แล้ว

    If you don't have much time, make it Quick. Cause this guy got you covered.

  • @Allformyequine
    @Allformyequine 2 ปีที่แล้ว

    Such great AWESOMENESS! How did I miss this one! Great stuff thank you as usual!!

  • @tomasmatusek6292
    @tomasmatusek6292 ปีที่แล้ว

    And what about when you have API, with images, where that was loaded/apply be users, and u aas frontend web dev should make this images smalled? Have you any idea ? You dont want every image translate by hand.

  • @zergzerg4844
    @zergzerg4844 ปีที่แล้ว

    Why srcset doesn't work. I don't se the changes, but if i 'm making changes in src by addin tr attribute it works fine

  • @patricknelson
    @patricknelson ปีที่แล้ว

    BlurHash is also another good method for showing blurry placeholder images while waiting for the larger images to load.

  • @mati2370
    @mati2370 3 ปีที่แล้ว

    What to do in case a cloud service stops responding for some reason? Can we set a fallback local image to show up instead of an alt attribute text?

  • @lucasmendonca2197
    @lucasmendonca2197 3 ปีที่แล้ว +2

    These thumbnails with ❌ and ✔️ are great attention-grabbers! keep 'em coming please

    • @JamesQQuick
      @JamesQQuick  3 ปีที่แล้ว

      Thanks! They definitely seem to get more visibility

  • @MaxProgramming
    @MaxProgramming 3 ปีที่แล้ว

    THAT IS VEEEERY INTERESTING! Thanks James 🚀🚀🚀

  • @luonglinhkhoi401
    @luonglinhkhoi401 3 ปีที่แล้ว

    I wonder if imagekit support adding metadata such as title or description when requesting and getting response

  • @kirayamato6128
    @kirayamato6128 3 ปีที่แล้ว

    Is it not loosing the quality of image when you compressed it?

  • @CristianSilverioNunezMata
    @CristianSilverioNunezMata 4 หลายเดือนก่อน

    Thanks a lot for sharing about imagekit. I appreciate it a lot!!!

  • @varshasingh1299
    @varshasingh1299 3 ปีที่แล้ว

    First like comment then see complete video...that much I trust you...

  • @maikolhernandez9176
    @maikolhernandez9176 3 ปีที่แล้ว +1

    I love this tutorial... simple, usefull and beautiful. Thank you for sharing.

  • @bonganintshangase6051
    @bonganintshangase6051 ปีที่แล้ว

    Could you please walk us through uploading on imagekit via client, react to be specific.

  • @itgiants5218
    @itgiants5218 3 ปีที่แล้ว

    what is the vscode theme you're using?

  • @destroyerYT-d4s
    @destroyerYT-d4s 3 ปีที่แล้ว

    What was the vscode theme name you used?

  • @JeyDotC
    @JeyDotC 3 ปีที่แล้ว +5

    Now I'm curious on how image kit protects itself from denial of service attacks or prevents people from causing crazy costs to a company by abusing the dynamic imagine generation 🤔

    • @thedeadz0ne1
      @thedeadz0ne1 3 ปีที่แล้ว

      You can restrict requests via "named-transformations" meaning you create pre-made transformations and name them, then, if you choose, imagekit can deny any transformation that isn't named. I believe there is throttling as well, plus if you call the same transform over and over it's cached

  • @Sankaritarina89
    @Sankaritarina89 3 ปีที่แล้ว +2

    Good video. I've been doing all these optimizations just recently to improve our LCP score. The only thing missing is webp. We have our own asset server so I'm going to have to dive deep to see what needs to be changed...
    I was just wondering, if I had like 100 JPGs, and I wanted to serve them as webp, I'd have to convert the whole batch beforehand right? Converting on the fly might not create any benefits no?... Just wondering...

  • @briandwayne3869
    @briandwayne3869 ปีที่แล้ว

    Very well done. I needed to know this like right now! 🤣

  • @renatoloefstop
    @renatoloefstop 2 ปีที่แล้ว

    Nice tutorial! What if the requirement was that people need to upload images on let's say a contact form and you need to compress/optimize those before the user uploading them?

    • @JamesQQuick
      @JamesQQuick  2 ปีที่แล้ว

      You could do a check on the file size of the image they are looking to upload and show an error message if it's too big. Is that what you mean?

    • @renatoloefstop
      @renatoloefstop 2 ปีที่แล้ว

      @@JamesQQuick Thanks for the reply! In stead of the error msg, it would be nice to automattically reduce images that are beyond certain file size (let say >2MB) so to minimize bad user experience by showing just the error. I find people using contact forms with file upload fields on their cell phones don't necessary know how to reduce them if they encounter an error while uploading. Are there good JS library's for this, how to use them or what do you recommended?

    • @hetoverseo3887
      @hetoverseo3887 ปีที่แล้ว

      @@renatoloefstop Search about sharp js, cdns and optimizing user input media.

  • @SmashieHC
    @SmashieHC 3 ปีที่แล้ว

    I would love something like this for next/image since I'm currently using that and deployed a Netflix-Clone, but i'm having a hard time optimizing the images. And if I use next/image all of my styling breaks...

  • @theog4983
    @theog4983 3 ปีที่แล้ว

    Hi James. I'm curious about one thing; can you please explain why you decided to create an array with the numbers 1-10 and using Foreach, as opposed to using a for loop which wouldn't necessitate creating an array for indexes?

    • @JamesQQuick
      @JamesQQuick  3 ปีที่แล้ว

      Great points. Unfortunately this was just an oversight. As I changed the way demo I did the demo, I forgot to update some parts of the code. Sorry for the confusion!

  • @rimantasdanilevicius6754
    @rimantasdanilevicius6754 3 ปีที่แล้ว

    what about video optimization?

    • @JamesQQuick
      @JamesQQuick  3 ปีที่แล้ว

      That’s something I don’t know as much about. I assume similar principles apply though

  • @strikeralph
    @strikeralph ปีที่แล้ว

    Helped so much❤

  • @RianY2K
    @RianY2K 3 ปีที่แล้ว

    thank you for tutorial. Maybe you can use Webpack to compress assets image during building production.

    • @JamesQQuick
      @JamesQQuick  3 ปีที่แล้ว

      That’s a good idea too!

    • @joshua.hintze
      @joshua.hintze 3 ปีที่แล้ว

      You can do this. I've used a webp loader, however dynamic content that users upload obviously doesn't run through webpack. This is a great option for doing that outside

  • @thetawise
    @thetawise 2 ปีที่แล้ว

    This is awesome! thanks for sharing :)

    • @JamesQQuick
      @JamesQQuick  2 ปีที่แล้ว +1

      Glad you enjoyed it!

    • @thetawise
      @thetawise 2 ปีที่แล้ว

      @@JamesQQuick Are there any optimizations we can make around serving gifs via imagekit? Currently it seems like cloudfront caching (media served through static s3 bucket via aws) is more performant than imagekit for Gifs, but I'm unsure if this is because I haven't configured imagekit correctly to serve Gifs

  • @riju22
    @riju22 3 ปีที่แล้ว

    I always use the picture tag with webp and fallback, while using imagekit as cdn

  • @harratabdelmalek2062
    @harratabdelmalek2062 10 หลายเดือนก่อน

    Thank you so much , man ❤

  • @luuduytoan3819
    @luuduytoan3819 3 ปีที่แล้ว

    Thank you so much for this tip!!

  • @destinlee
    @destinlee 3 ปีที่แล้ว

    Fun watching this now that you told us how it was all done on the last Compressed 🍻

  • @vladserhiychuk8925
    @vladserhiychuk8925 ปีที่แล้ว

    That's what I need. Thanks.

  • @datoshcode
    @datoshcode 3 ปีที่แล้ว

    Compare a compressed file in the png format and in webp format.

    • @Wahinies
      @Wahinies 7 หลายเดือนก่อน

      Webp is superior to true color PNG in lossless and far better in lossy

  • @mrBurlaka1
    @mrBurlaka1 11 หลายเดือนก่อน

    so cool! thanks

  • @AchwaqKhalid
    @AchwaqKhalid 3 ปีที่แล้ว +1

    #AVIF to rule them all 💪

    • @Wahinies
      @Wahinies 7 หลายเดือนก่อน

      Theres room for JXL

  • @RubberDuckCoding
    @RubberDuckCoding 3 ปีที่แล้ว

    VERY VERY NICE!

  • @whatthefunction9140
    @whatthefunction9140 3 ปีที่แล้ว

    This is gold

  • @SunilSkanda
    @SunilSkanda 3 ปีที่แล้ว

    Thanks 👍

  • @encycl07pedia-
    @encycl07pedia- ปีที่แล้ว

    You're missing a really huge way to optimize your site with those images: you don't even need 80% of the ones you showcased. Most of it is text on a background. Just put the text as actual text. and put the profile picture circles as the only pictures on the page. It looks like some of them were reused so you'd only need to load 1 or 2 much smaller images instead of 6 huge, mostly-redundant images.
    Text shouldn't be in images unless it's a logo or wordmark.
    Also your contrast is pretty awful with the black leading 00 on top of a black background. Vincent Flanders of WPTS would have a field day with those images on a website.
    WebPs are also just bad for the end user if they want to save them. Lazy loading is the same. It doesn't work if JS is turned off or not supported. Those substitutions and calculations also cost computing power.
    For thousands of years (decades, but that's not as fun to say), man has used thumbnails with real image formats. It worked on dial-up. It works today. Just optimize the image by making thumbnails. It's simpler, faster, cheaper, and just works.

  • @ha_ks799
    @ha_ks799 3 ปีที่แล้ว

    I recommend compress.js

  • @diegognoatto590
    @diegognoatto590 3 ปีที่แล้ว

    pretty neat

  • @pixelmasque
    @pixelmasque 3 ปีที่แล้ว

    great!

  • @nifares8744
    @nifares8744 3 ปีที่แล้ว

    9:22 hoy vi ese video.

  • @chhavimanichoubey9437
    @chhavimanichoubey9437 3 ปีที่แล้ว

    dynamic imagekit.io

  • @kennedya7848
    @kennedya7848 3 ปีที่แล้ว

    im interested in this. but i dont like to put 18 minutes of my life to watch this.

    • @JamesQQuick
      @JamesQQuick  3 ปีที่แล้ว

      Hmmm how much time can you give?

    • @kennedya7848
      @kennedya7848 3 ปีที่แล้ว +1

      if you can, atleast 10mins max. but if it cant really be compressed in a short video, make sure what you say is not repeated. i noticed your intro is almost 2 mins long. at most 30 secs will do. and what you said there was once again repeated later in the vid, wastes time.
      also, make use of sections/timestamps. just a simple big title on screen on what part you are taking about.
      but hey, im just a random internet dude in your comment section. it's your choice if you want to follow my opinions/recommendations.
      i'll be wishing you luck on your youtube career.

    • @joshua.hintze
      @joshua.hintze 3 ปีที่แล้ว +1

      I watched this in 1.5X speed and was able to follow along just fine.

    • @patricknelson
      @patricknelson ปีที่แล้ว

      @@JamesQQuickShould have used ImageKit to compress your video! (j/k)