others2022-05-22
www.youtube.com

In this video, I will go deeper into the core concepts in @Remix as We build a blog app with Prisma and Sqlite. Remix is a full-stack web framework that lets you focus on the user interface and work back through web standards to deliver a fast, slick, and resilient user experience. People are gonna love using your stuff. šŸš€ Join Discord - https://discord.com/invite/amsZty2hkM ā–¬ šŸ”— Chapters ▬▬▬▬▬▬▬▬▬▬ āŒ›ļø 00:00:00 Remix Intro āŒ›ļø 00:07:27 Remix Project Initialization - File Structure Overview āŒ›ļø 00:12:26 React Overview - Class/Functional Component āŒ›ļø 00:16:57 React Overview - Props āŒ›ļø 00:22:00 React Overview - State āŒ›ļø 00:25:00 React Overview - Handling Events āŒ›ļø 00:29:00 React Overview - Functional Component [hooks] āŒ›ļø 00:33:37 What/Why Remix āŒ›ļø 00:35:40 Add Tailwind CSS with Configuration āŒ›ļø 00:46:00 Configure Prettier and Eslint āŒ›ļø 00:53:00 Your First Route āŒ›ļø 00:46:00 Loading Data - Loader āŒ›ļø 01:10:00 Refactoring and Models āŒ›ļø 01:19:00 Dynamic Route Params āŒ›ļø 01:33:54 Nested Routing āŒ›ļø 01:41:03 Actions āŒ›ļø 02:03:00 Progressive Enhancement - Data Mutation āŒ›ļø 02:11:00 Delete Data āŒ›ļø 02:27:00 Prisma and Pulling from a data source āŒ›ļø 02:50:00 Error Boundary āŒ›ļø 02:54:00 Outro ā–¬ šŸ”— Resources ▬▬▬▬▬▬▬▬▬▬ ā­ļø Github Repo: https://github.com/moelzanaty3/complete-intro-to-remix-run ā–¬ šŸ”„ Contact Me ▬▬▬▬▬▬▬▬▬▬ BIO: https://moelzanaty3.bio.link/ šŸ’– Become a Patron: Show support & get perks! https://www.patreon.com/mohammedelzanaty ā˜•ļø You Don't need to meet me to buy a coffee: https://www.buymeacoffee.com/moelzanaty3 šŸ”— GitHub: https://github.com/moelzanaty3 šŸ”— LinkedIn: https://www.linkedin.com/in/moelzanaty3 šŸ”— Twitter: https://twitter.com/moelzanaty3 šŸ“Ŗ mohammedelzanaty129@gmail.com ā–¬ āš™ļø My Equipment Gear ▬▬▬▬▬▬▬▬▬▬ 🌟 https://kit.co/mohammdelzanaty/my-youtube-and-teaching-gear ā–¬ šŸŽØ My Editor Settings ▬▬▬▬▬▬▬▬▬▬ 🌟 Night Owl Color Theme. 🌟 Dank Mono Font or more information - https://www.youtub.com/watch?v=ykA7WnUQuV0

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.