
Super proud of @AnfibiaCreativa who just released 23 bite-sized videos to help you explore the fundamentals of JavaScript. Check it out on @OReillyMedia! 👉🏽 learning.oreilly.com/search/?q=auth…
Natalia Venditto🦋
18.3K posts

@AnfibiaCreativa
Principal Engineer @Adobe AEM. OSS. CPC @openjsf. @oreillymedia author https://t.co/c8Hsc5MXb6

Super proud of @AnfibiaCreativa who just released 23 bite-sized videos to help you explore the fundamentals of JavaScript. Check it out on @OReillyMedia! 👉🏽 learning.oreilly.com/search/?q=auth…



Web Fragments: The Future of Micro-frontends See the full video here: youtu.be/jtz7bBVKcOg @IgorMinar @AnfibiaCreativa @CloudflareDev







Websockets which a lot of people use while building realtime communication (such as chatapps) are not scalable for large userbase. It can be good for small scale startups but large scale companies don't use it. Most of the times, either companies write their own custom protocols or use pubsub models like MQTT. In websockets, open connections are all handled by application servers. This requires alot of resources. Horizontal scaling can't be done beyond a point since u can't add infinite/a lot of servers becz its expensive. Since browsers only have websocket for two way communication, most companies build their protocol by taking websocket as transport layer. And don't use it as application layer with socketIo.



