Remix Guide

Menu
  • Official
    110
  • Tutorials
    395
  • Packages
    80
  • Events
    20
  • Showcase
    99
  • Templates
    58
  • Examples
    106
  • Opinions
    118
  • Docs
  • GitHub
  • Discord
  • Meetup
  • RSS
Tutorials
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 / sergiodxa.com2021-12-24

HTTP vs. Server-side Cache in Remix by sergiodxa

When you build a web application, you may reach a point where some performance problems could be solved by a...

others / sergiodxa.com2021-12-24

Test Remix loaders and actions by sergiodxa

If you are using Remix, most of your application code will live in the loaders and actions instead of React compo...

others / egghead.io2022-12-16

Build a Realtime Chat App with Remix and Supabase

Supabase is a collection of open-source tools that wrap around a PostgreSQL database. In this course, we look at building a realtime chat application with Remix, using Supabase for db hosting, authentication, authorization and subscribe to realtime db events - updating the UI as the database changes. We will learn about: loaders and actions in Remix querying and mutating data with Supabase authentication with GitHub authorization with RLS merging client and server state with realtime events deploying a Remix app to Vercel This course is 100% TypeScript, however, don't stress if you don't have any experience with TS, as Supabase does most of the heavy lifting here! 🎉

others / egghead.io2022-08-23

Validating Remix Form Data Using Zod and TypeScript

You can use Zod to validate form input and create typed TypeScript objects in a Remix action function that is handling the form data.

others / vicvijayakumar.com2022-03-14

Building a full stack app with Remix, Prisma, and Supabase

There is a misconception that Remix is only for static sites. This is a how-to guide for building a full-stack app with the new framework + Prisma + Supabase, and deploying it to Vercel.

others / remixfornextdevs.com2024-05-05

Remix for Next.js Developers

Snippets of code translated from Next.js to Remix. Learn Remix by example.

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.

others / www.canrau.com2022-02-13

Remix upload to S3 — CanRau.com

Upload files to S3 compatible API - I'm using Backblaze B2 - with Remix and parseMultipartFormData

others / sergiodxa.com2022-05-18

E2E test Remix with Vitest and Puppeteer by sergiodxa

Vitest is a testing framework, similar to Jest, but way faster, built on top of Vite, which uses esbuil...

others / sergiodxa.com2022-01-11

Use Remix with socket.io by sergiodxa

If you want to add real-time capabilities to your Remix app without using an external service, the easiest way is proba...

others / gist.github.com2021-12-24

debounced-search.tsx

others / sergiodxa.com2021-12-24

The useMatches hook in Remix by sergiodxa

If you use Remix, there's a hook that you can use called useMatches, this hook is a way to access some internal d...

others / www.jacobparis.com2023-09-26

Build a server-side filter UI with Remix

Create a filter bar that stores its state in the URL. Use the OData query string format to parse and serialize the filters. Create a custom hook to manage the filter state.

others / gist.github.com2021-12-24

Debug server-side Remix using VSCode

others / remix-cookbook.com2022-01-07

Remix Cookbook - Easy to follow recipes for Remix.run

Easy to follow recipes for the Remix.run framework

others / sergiodxa.com2021-12-24

Loader vs Route Cache Headers in Remix by sergiodxa

Document Request So, let's say you have a route at /my-super-route, and there you have a loader fun...

others / supabase.com2022-11-16

Supabase Auth with Remix

Authentication helpers for loaders and actions in Remix.

others / www.mattstobbs.com2022-11-22

Authentication in Remix

As apps grow, almost all will need user authentication. Fortunately, Remix gives us tools to make this easy. In this post, we'll look at how we can add authentication to an app using Remix.

others / sergiodxa.com2022-12-02

Add rolling sessions to Remix by sergiodxa

Rolling sessions is a technique to extend the maxAge of a session cookie by resetting the cookie's expiration date...

others / nalu.wiki2022-11-07

Improving Web Vitals in Remix

**[Your Remix app](https://remix.run/docs/en/v1/pages/stacks)** is fast by default, but with a few edits to **root.tsx** you can make it feel even faster...

others / sergiodxa.com2022-11-16

Progressively enhance the useFetcher hook in Remix by sergiodxa

If you're using multiple forms on the same route, you may use the useFetcher hook, which also...

others / www.youtube.com2024-04-19

Easy Stripe Integration in your Remix.run App

In Today's episode will cover: - @Stripe Integration - Webhook Setup - Checkout Session and Payment Testing These videos are free and created for the community, support will be much appreciated! 🫶

others / sergiodxa.com2023-10-24

How to Upload Images in a Remix Application by sergiodxa

The blog of sergiodxa

others / sergiodxa.com2023-10-06

How to Redirect with Search Param in Remix by sergiodxa

The blog of sergiodxa

Show more
New Hot Top
others2022-02-13

Remix upload to S3 — CanRau.com

www.canrau.com
Tutorials

Upload files to S3 compatible API - I'm using Backblaze B2 - with Remix and parseMultipartFormData

cover

Published on www.canrau.com

others / www.canrau.com2021-12-25

Remix 💿 mdx-bundler and images — CanRau.com

How to get mdx-bundler (by Kent C. Dodds) working with local images

others / www.canrau.com2021-12-25

How to add canonical URL to Remix 💿 — CanRau.com

Add canonical urls to you Remix website to avoid duplicate content penalties for better SEO

others / www.canrau.com2022-05-19

Dynamically generate og:image using skia-canvas in Remix 💿 — CanRau.com

How to dynamically generate og:images for Social Media using `skia-canvas` in a Remix resource route.

others / www.canrau.com2022-01-09

Dynamically generate OG:image using Remix 💿 — CanRau.com

How to dynamically generate OG:images using Remix resource routes, React JSX, TailwindCSS & Puppeteer

others / www.canrau.com2021-12-25

How to deploy Remix 💿 to fly.io using GitHub Action — CanRau.com

How to deploy your Remix.run 💿 website to fly.io using GitHub Actions?

others / www.canrau.com2021-12-24

RSS in Remix 💿 — CanRau.com

How to generate (beautiful) RSS feeds and in general web-feeds using Remix 💿?