others2021-12-24
www.youtube.com

Retour d'expérience sur Remix Speaker : Benoit Averty Remix est un framework React avec Server Side Rendering sorti en beta le 29 avril (et disponible en preview depuis octobre 2020). Il présente la particularité de ne pas être open source, et d'être payant (250 € pour les indépendants, 1000 € pour une license d’entreprise). Mais au delà de ça, Remix encourage un style de développement différent de ce qu’on pouvait voir jusqu’ici dans l'écosystème React. Basé sur React Router, il nous encourage à utiliser les technologies éprouvées du web (Http, Navigateurs, HTML) et propose un niveau d’abstraction très bien dosé. Est-ce que Remix vaut le coup de payer cette somme alors que des alternatives open-source existent ? Comment est l’expérience développeur ? Que va apporter Remix au monde du développement React ? Après plusieurs mois à expérimenter avec Remix, je vous propose mon retour d’expérience et mon avis sur ce framework innovant.

Published on www.youtube.com

others / www.youtube.com2022-01-11

How to Debug Remix loaders and actions in VS Code

This video shows how to configure VS Code to debug your Remix loaders and actions. NOTE: You can now use the `debugger` statement instead of the external `debug()` function. I tried this before, but it didn't work. Not sure why it works now. You still can't set a breakpoint inside a route module, but you can add `debugger` statement and it will break there. You can then step through your code. I will be re-recording this video with this new info. Get the launch configuration here: https://rmx.fyi/debug

others / www.youtube.com2021-12-24

Remix Run - Introduction to HTTP Caching

HTTP Caching is a web fundamental every web developer should eventually learn. The quickest way to a slow website is to not understand caching and ofc, the best way to make your website fast is to take advantage of it. In this video we'll explain the basics of HTTP caching, how web browsers respond to it, and how CDNs take advantage of it, by building a bare-bones Node.js server and then quickly see how to specify caching headers in a Remix App.