Service Workers

Service workers, what they are, and why they are needed are all important concepts to know about for a front-end interview. Let's learn about these concepts in this lesson.

Hybrid apps

Hybrid apps are in-between native apps and regular websites, or ‘web apps.’ They use the same technologies as a web app (HTML/CSS/JS), but they adapt to platforms via Xamarin or Cordova. These ‘wrappers’ give them access to native device features, like offline storage. They are available for installation on the app store/play store.

Hybrid apps are great because they significantly save development time. You just develop them once and they are available on every platform. The downside to ...