Intro To Service Workers & Caching

Поделиться
HTML-код
  • Опубликовано: 2 авг 2018
  • In this video we will learn about service workers and how to use them to cache pages for offline viewing. Service workers are a huge aspect of PWA's or "Progressive Web Apps". We will add a service worker to a tiny sample website so that if the connection goes out, users can still view the pages.
    Sponsor:
    DevMountain Bootcamp - goo.gl/6q0dEa
    Code For This Project:
    traversymedia.com/downloads/si...
    Node.js Push Notifications Tutorial:
    • Push Notifications Usi...
    💖 Become a Patron: Show support & get perks!
    / traversymedia
    Website & Udemy Courses
    www.traversymedia.com
    Follow Traversy Media:
    / traversymedia
    / traversymedia
  • НаукаНаука

Комментарии • 352

  • @taariqq
    @taariqq 6 лет назад +82

    Brad, thank you for keeping it vanilla. Oh, and thank you for teaching us the important stuff that some of us did not even know was important.

  • @iamlisaross
    @iamlisaross 6 лет назад +13

    me: on a call with older-school dev explaining service workers to him and that we should use them
    brad: releases video explaining service workers, youtube notification pops up
    me: weeps with joy

    • @StijnHommes
      @StijnHommes 3 года назад

      New isn't better. The other developer is right to not jump on the mindless bandwagon by helping to produce PWA spam. They're probably designing real apps instead of repurposed websites.

    • @EnglishTurkishExpert
      @EnglishTurkishExpert 3 месяца назад

      illuminati 😁😁😁😁

  • @hamzajirah4856
    @hamzajirah4856 5 лет назад +10

    I have lost count of how many times my search leads me to your channel. I owe a good part of my dev knowledge and skills to your courses on RUclips and Udemy. Thanks Brad.

  • @claudwatari
    @claudwatari 3 года назад +1

    2 years later, I came here & I'm happy with this tutorial. Thanks Brad.

  • @lolismelolisme7546
    @lolismelolisme7546 6 лет назад +105

    Thanks Brad, always producing quality content.

    • @TraversyMedia
      @TraversyMedia  6 лет назад +7

      Thanks for watching :)

    • @mooodddy1
      @mooodddy1 5 лет назад

      Thanks brad, plz make video about work box toturial

  • @adriandinca5682
    @adriandinca5682 6 лет назад +15

    Thank you Brad for always staying up to date and posting regularly!
    I think that the approach you have used only serves content from the cache when the user is completely offline, but when the user is on a very slow connection the code still goes to the network and does not get the content from the local storage first. It is true that by using this approach you get the latest content no matter what, but PWAs are meant to be fast no matter what the connection type is like, serving the content from the cache and then going to the network would yield faster results.
    Here is how I would achieve that. Inside the fetch event listener I would respond with
    e.respondWith(
    // look for a match inside all caches
    caches.match(e.request)
    // if there is a cached version of the request serve that otherwise go to the network
    .then(response => response || fetch(e.request))
    );
    I know this video is not exactly about PWAs, but I think the service worker is mainly used with them.
    Please correct me if I am wrong.
    P.S. YOU ARE AWESOME! :D

    • @OnePieceWonPeace
      @OnePieceWonPeace 5 месяцев назад

      Totally appreciate your comment here. You bring up a really good point and, for the argument you make, you're totally right. I think, tho, there are actually 2 preferences one could have. 1) Like your own, you prefer speed at the cost of a somewhat stingy/sticky cache. 2) A fault tolerant strategy that prefers the latest at the cost of speed.
      I think it really depends on what the mission of the app ultimately is.

  • @Shipx7
    @Shipx7 2 года назад

    My instructor assigned almost TEN HOURS worth of Indeed videos explaining service workers, and I couldn't really understand them because they were so dry. You managed to explain what they are, what they're used for, and how to implement them in a basic form in half an hour without overloading my monkey-brain. Bravo.

  • @lsd22252
    @lsd22252 6 лет назад +1

    Service workers are an amazing capability that enable PWAs to deliver Store App like capabilities without needing the overhead of inclusion in the Apple, Google or Microsoft Store. Local cache first options mean that PWA apps can function offline after they've been run once from the Browser. They can also be installed to run from a home screen. Over the last few years Google, in particular, have improved the PWA experience to prime time level but all evergreen Browsers do, or will shortly, fully enable other PWA compliance requirements as well Thx Brad. Your great coverage will give us all a better understanding of the skills required to build PWAs . . . starting with the service worker. I ♥ PWAs.

  • @srcmake
    @srcmake 6 лет назад

    Literally every single video you make is premium god-tier content. Awesome video, thanks for teaching/demoing about caching.

  • @shankerm3959
    @shankerm3959 5 лет назад

    The beauty of Brad's lessons is you come in to learn something and you pick up a dozen new things.

  • @eacarvalho
    @eacarvalho 6 лет назад +1

    Thank you so much, Brad. I've been learning a lot from your tutorials. Yesterday, I bought your modern javascript at udemy and I can't wait to start it.

  • @KevinSheppard
    @KevinSheppard 6 лет назад

    Thanks Brad! I was a bit afraid of Service Workers but this tutorial made me feel more confident about trying them out.

  • @gabiold
    @gabiold 4 года назад

    Thank you! Your presentation style is sooo clear, your videos are the best!
    You achive the understanding not by painfully slowing down talking and overexplaining things, but just clearly explaining what's going on, focusing clearly on topic, nothing else, nothing more, nothing less.
    Can you do a video about client-side databases, especially IndexedDB?
    Possibly mentioning some in-memory DB solutions, and comparing them, what's best for what.
    Sorry if you did that already, I couldn't find it yet.

  • @Q6ri1990
    @Q6ri1990 6 лет назад

    Thank you for the awesome guide. I’ve been having some difficulties in understanding Web workers, but now I have a better understanding thanks to you.

  • @thanasisathanasi4965
    @thanasisathanasi4965 5 лет назад +4

    Best video on Service Workers in RUclips! I subscribed in the channel without delay

  • @AegirAexx
    @AegirAexx 5 лет назад +1

    Wondering about Service Workers...
    Going to RUclips and search for Service Workers...
    Of course Traversy Media has a short introduction about the subject.
    Brad, you magnificent beast, I love you! Keep up the awesome work!

  • @tommyatkins4806
    @tommyatkins4806 3 года назад +1

    Best Dev channel I've found on RUclips!

  • @sasayaki
    @sasayaki 6 лет назад

    Thank you for this. I've been confused for days. You are the great explainer, Brad 😊

  • @thetechnerdco
    @thetechnerdco 3 года назад

    For those that were following along and couldn't get the 'sw_cached_site.js' to work, go back in your main.js and make sure the service worker that is registered is pointing to the correct file. Took me a minute lol because I followed this at 1.5x and learned it too! Thanks Brad! :)

  • @sumitkumarsingh9202
    @sumitkumarsingh9202 6 лет назад +2

    Thanks Brad, it's really the best content for the freshers like me.

  • @magxtopher1332
    @magxtopher1332 6 лет назад

    You are blessed with explanations of every details and your teaching is easy and simple.But I now know the secrets: Hard work and passion.Thanks.

  • @supindersingh8882
    @supindersingh8882 4 года назад +1

    Most of the time you solve my code problems. Thank you!

  • @OnePieceWonPeace
    @OnePieceWonPeace 5 месяцев назад

    Thank you man! This was more than just MANY sanity checks, it literally dig me out of a hole in a couple spots. I only wish you spoke more about the diff better the fetch handler between each Service Worker and elaborate on why you cloned the request in the 2nd strategy. That said, loved the tutorial. Thank you again.

  • @hnasr
    @hnasr 5 лет назад +3

    Amazing tutorial dude! Learned lot!

  • @masnoonjunaid
    @masnoonjunaid 5 лет назад +5

    Thanks ! I messed for 10 days and finally victorious at this video, God bless you.

  • @sivach8667
    @sivach8667 3 года назад

    Thanks a lot...Not just for delivering great content but also for avoiding annoying and unrelated starting music.

  • @milosh996
    @milosh996 6 лет назад

    These crash courses are gems. Thank you.

  • @peterfeng208
    @peterfeng208 4 года назад

    Thanks Brad, your video just solved the last piece of puzzle for me to work on the ERP as web application with PWA implementation.

  • @DavidJohnson-hb6gh
    @DavidJohnson-hb6gh 5 лет назад

    Great video! Concise, yet detailed, and comprehensive.

  • @adryanyudhatrisna1944
    @adryanyudhatrisna1944 6 лет назад

    Brad deserves more than 1M subscribers, because his videos are so cool... Keep it up brad!

  • @sunkanmifafowora9402
    @sunkanmifafowora9402 5 лет назад

    Thanks brad for this. You make this fun and enjoyable. You are also a really good tutor. I am wondering why this video doesn't have more than 100,000 views lol. Please keep up the good work

  • @bitcode_
    @bitcode_ 5 лет назад

    I've bought your courses and learned a lot, I got here again from searching exactly for my search query, your channel has become "thenewboston++" and I love it!

  • @clockwerkz
    @clockwerkz 6 лет назад +3

    I'm *just* getting to Service Workers in my Udacity Course, this is awesome timing! Thank you Brad!

    • @forrestang
      @forrestang 6 лет назад +2

      Same here... I hate this Udacity Course :)

    • @xpolentaedgex
      @xpolentaedgex 6 лет назад

      ahhaha #team_udacity here too

  • @AneesKhan-uz4mz
    @AneesKhan-uz4mz 6 лет назад

    Finally a worth watching channel :), make me feel very happy, Love Mr.Brat god bless you

  • @axelruiz3015
    @axelruiz3015 3 года назад

    I have had problems with service workers, but you made it very easy to understand, thank you :3

  • @singaporestreettravel
    @singaporestreettravel 6 лет назад

    Thanks Brad giving short but quality information about workers... Keep going on...

  • @olowolafemodupe6583
    @olowolafemodupe6583 5 лет назад

    Thank you Brad. You made this so easy for me to learn.

  • @vicjtav
    @vicjtav 5 лет назад

    This is a great introduction to service workers brad. Thanks 🙏

  • @varletconstundefined
    @varletconstundefined 5 лет назад

    i never came to this channel and left not understanding what i am looking for.
    before even watching 2 min.
    Like and i'm sure i will get service workers perfectly (Y)

    • @varletconstundefined
      @varletconstundefined 5 лет назад

      Now I'm Back after intensive studying for the video.
      Masterpiece really easy to follow (Y)

  • @samachema4573
    @samachema4573 6 лет назад

    Service Worker is becoming a big deal these days. Appreciate you doing an intro on this.

  • @dibils
    @dibils 6 месяцев назад

    thanks for this, by far the best instructions on getting started with service workers!

  • @HaraldEngels
    @HaraldEngels 4 года назад

    Excellent video. Very informative and well structured. Thank you for your efforts to produce and share it.

  • @RabbaniRasha
    @RabbaniRasha 2 года назад

    Thank you so much sir! I managed to convert my site to PWA and Chrome showed install prompt after applying your tutorial.

  • @RickBeacham
    @RickBeacham 5 лет назад

    Thanks for vanilla and showing us the basics. Alot of great information. Cheeers.

  • @pravinkumar-lz2jm
    @pravinkumar-lz2jm 5 лет назад +1

    Thank you so much for this quality content(as always)

  • @shahzaibkhan-md9xw
    @shahzaibkhan-md9xw 6 лет назад +2

    Brad, you're great thank you for this tutorial

  • @KonstantinJivkov
    @KonstantinJivkov 5 лет назад +1

    Brad, you are amazing person! Thank you!

  • @OfficialChoiceTV
    @OfficialChoiceTV 6 лет назад

    Oh man, you just opened a whole new world of possibility for me.

  • @IngenieroJorgeIvan
    @IngenieroJorgeIvan 5 лет назад +2

    The best service worker tutorial.
    Gracias.

  • @lightinthedark5708
    @lightinthedark5708 5 лет назад +1

    WoW!! Awesome!! Thanks, Brad!
    This is very helpful!!

  • @billypentester
    @billypentester Год назад

    your explanation, concept cases and clean code help better to understand

  • @jamalabdullahi8155
    @jamalabdullahi8155 6 лет назад +1

    This is what I have been waiting thanks brad

  • @davidconnelly
    @davidconnelly 6 лет назад +1

    Awesome work, Brad.

  • @JimmyBOnYouTube
    @JimmyBOnYouTube 6 лет назад +1

    My favorite flavor happens to be _vanilla_ so thanks for serving Brad!

  • @AbhishekKumar-mq1tt
    @AbhishekKumar-mq1tt 6 лет назад +1

    Thank you for this awesome video, I am waiting for next PWA video

  • @gopinathkrm58
    @gopinathkrm58 6 лет назад

    Thanks Brad. Keep up your great efforts.

  • @pegasusteam
    @pegasusteam 6 лет назад

    Great overview of Service Workers Brad. Thanks!

  • @Mvrck44
    @Mvrck44 4 года назад

    Thank you for the video, it made possible to build my first cached site!
    One remark though, instead of caching 'index.html' that led to unreliable behaviour, I ended up using '/', what I've seen done elsewhere, and works steady now. It allowed me to stop using the 'Update on reload' checkbox too.

  • @marioleon86
    @marioleon86 5 лет назад

    Thanks good introduction practical enough more than many I found

  • @kevinzhang8974
    @kevinzhang8974 6 лет назад

    Happy Friday to everyone. Thanks Brad for another great one for this latest technology. Now, it forces me stop doing other things and complete this first .... :-)

  • @rutwickgangurde3247
    @rutwickgangurde3247 4 года назад

    Great tutorial! Thanks. And props for using plain JavaScript.

  • @HI-wq5vh
    @HI-wq5vh 3 года назад

    Thanks Brad. Like always love your work and thanks for sharing.

  • @malikgenius4u
    @malikgenius4u 6 лет назад

    awesome video Brad, you did it again. will wait for a full flagged React with service workers and push notifications course on udemy or youtube ... keep it up bro.

  • @HarshSingh-hk8fe
    @HarshSingh-hk8fe 8 месяцев назад

    😀thanks alot sir for this incredible tutorial the way you teaches is just wow.

  • @logkdogk
    @logkdogk 5 лет назад

    Awesome one, so helpful for so many sites!

  • @omegakofi2605
    @omegakofi2605 4 года назад

    I was researching about different ad networks and I came to know about MonadPlug advertising network a few weeks ago. The revenue is pretty good for the ad formats I’ve tested (push notifications and native ads). Their live support is super helpful!

  • @kbcarte420
    @kbcarte420 6 лет назад

    I literally just learned about these in a podcast I listen to.

  • @AneesKhan-uz4mz
    @AneesKhan-uz4mz 6 лет назад

    Admit it guys, Brad is the best instructor ever

  • @skilled-person
    @skilled-person 5 лет назад

    Thanks Brad, you always save the day... to bad RUclips don't have 5 stars rating for channels :(

  • @irrefl1672
    @irrefl1672 4 года назад

    Quality content. Thanks. From Honduras.

  • @serhiimamedov
    @serhiimamedov 3 года назад

    I was trying learn it myself with official docs.
    The worker was registered successfully but I wasn't getting any logs from service worker.
    I was trying to find the answers but nether docs, googling nor stackowerflow helped.
    Couldn't understand what is the problem.
    But thanks to you I understand I just needed to check that "Preserve log" checkbox.
    Thanks Brad!

  • @Xandr017
    @Xandr017 5 лет назад

    outstanding video, really clear explanation

  • @pedroserapio8075
    @pedroserapio8075 6 лет назад

    Great, really simple and on point.

  • @sphengle
    @sphengle 4 года назад

    Excellent. Very clear introduction.

  • @henryli6188
    @henryli6188 5 лет назад

    This is very helpful. Thank you!

  • @Tulhaofv
    @Tulhaofv 5 лет назад

    Thank you, very good and well explained.

  • @ankursaini5342
    @ankursaini5342 6 лет назад

    Thanx for this tutorial....
    Always love your work....
    Waiting for Webworker tutorial and indexed db

  • @shivammishra6630
    @shivammishra6630 3 года назад

    Thanks Brad, this was really helpful!

  • @sourandbitter3062
    @sourandbitter3062 3 года назад

    Brad, always there to save the day.

  • @reassume4826
    @reassume4826 4 года назад

    Wow. Such a valuable tutorial. Thanks Man!

  • @11211211T
    @11211211T 5 лет назад

    Beautifully explained!

  • @vivekvanga3588
    @vivekvanga3588 6 лет назад

    Thanks Brad.. big fan of your channel..

  • @fdc_8507
    @fdc_8507 6 лет назад +1

    this comes in the right time for me :) thanks

    • @kisali777
      @kisali777 6 лет назад

      awesome brad has ability to read people's mind

  • @IamMclov1n25
    @IamMclov1n25 6 лет назад

    Another solid video, thanks Brad.

  • @RichardHema
    @RichardHema 6 лет назад

    Thank you, appreciate your videos.

  • @georgekrax
    @georgekrax 4 года назад

    Much better than Google's Progressive Web Apps (PWA) course on Udacity!

  • @generalg007
    @generalg007 6 лет назад

    Very well explainded, thanks Brad.

  • @sachindraragul1094
    @sachindraragul1094 2 года назад

    Great explanation. Thanks for the tutorial.

  • @adante407
    @adante407 6 лет назад

    Brad Traversy & Shaun Pelling aka The Net Ninja. It's all anyone needs.

  • @karlheinzneugebauer
    @karlheinzneugebauer 6 лет назад

    Screw those few ones who disliked this video. If they don't get it after watching it, they must be dumb as a rock. Keep up the good content, Brad!

  • @zen-ventzi-marinov
    @zen-ventzi-marinov 4 года назад

    Guys, what in your opinion makes a somebody a good teacher? I mean, what is the cause? Why do some become so good at explaining things so well and others can't?
    P.S. Thanks for the video. Ops, the channel. Ops, for doing what you do. Ops for existing. Ops, for having to deal with overenthusiastic comments such as this one.

  • @kazinayem2011
    @kazinayem2011 4 года назад

    Hey Brad, Whenever i search for something, firstly i check content from Traversy Media. You are very cool. Thanks a lot. It would be very helpful if any content for CRUD operations to sync to DB whenever we are from offline to online.

  • @jagadeeshmanoharan9613
    @jagadeeshmanoharan9613 6 лет назад +3

    Every new video from Brad gives me a confidence.

  • @CarltonJosephLv
    @CarltonJosephLv 6 лет назад +1

    Nice! Thanks. I have my vote in for a PWA in react over Vue.

  • @alidhuniya7733
    @alidhuniya7733 6 лет назад

    wow bro very useful for my incoming project

  • @amritadhikari9194
    @amritadhikari9194 Год назад

    Thanks Brad. This helped a lot.

  • @mithunnick
    @mithunnick 4 года назад

    Thank You, Explained nicely

  • @xpolentaedgex
    @xpolentaedgex 6 лет назад

    what a cleannnn explanation! thanks

  • @praveenreddyadelli8094
    @praveenreddyadelli8094 6 лет назад

    Brad, your videos are great. It will also help if you can write some articles on Medium

  • @davidjustice2323
    @davidjustice2323 4 года назад

    Beast as always! Thanks.