Talk presented in Russia during the DeveFest Voronezh 2017.
We talked mostly about Service Workers and how they will help us reshape the web, but also about web app manifest and related web technologies.
How? - Based on Web Technologies - Open source Technologies - Asynchronous (promises, lots of promises) - Safe (HTTPS, inside the Service Worker scope) @felipenmoura
What for? @felipenmoura - To be supported in different platforms - To work in slow connections or even offline - To become "installable" in the user's device
What for? @felipenmoura - To be supported in different platforms - To work in slow connections or even offline - To become "installable" in the user's device - To be much faster
Service workers - Have their own scope - Once registered, runs in background - Require HTTPS (or localhost) - Can only deal with requests in its own scope (or use opaque responses) @felipenmoura
SW may access IndexedDB - Can be used to deal with JSON reponses - Asynchronous (although, has an "ugly syntax") - Allow filtering, searching and update @felipenmoura