This blog post is a draft. Please don't share it in its current state.

The Beginner's Guide to Remix

November 11th, 2021 — 2 min read

black cassette tape on white surface
black cassette tape on white surface
No translations available.Add translation

This blog post is for folks who want to learn how to get started with Remix.

Note that Remix is as of yet still not officially released and open source/publicly available. So if you don't have access yet, be patient. It'll be launched soon!

Check out icanhazdadjoke.com. We're going to build a simple version of that in this beginner's guide. Here's what we're going to cover:

  1. Generate the project

It's gonna be a good time. Ready to go? Let's go!

Pre-requisites

If you want to follow along with this post that's cool. You'll just need to have a recent version of npm and Node.js installed and available in your PATH. We'll be running some command line commands. We'll also be writing some JavaScript (TypeScript) and React code, so some experience with that would be helpful.

Generate the project

Run this in your terminal wherever you keep your coding projects:

npx create-remix@latest

This will ask you a few questions about how you want to generate your project:

R E M I X

💿 Welcome to Remix! Let's get you set up with a new project.

? Where would you like to create your app? remix-jokes
? Where do you want to deploy? Choose Remix if you're unsure, it's easy to change deployment targets. Remix App Server
? TypeScript or JavaScript? TypeScript
? Do you want me to run `npm install`? Yes
💿 Created local .npmrc with Remix Registry

Sweet! You've generated a project! If you're curious to understand what the different files and package.json scripts/packages are for, read Super Simple Start to Remix

Epic React

Get Really Good at React

Illustration of a Rocket
Kent C. Dodds
Written by Kent C. Dodds

Kent C. Dodds is a JavaScript software engineer and teacher. Kent's taught hundreds of thousands of people how to make the world a better place with quality software development tools and practices. He lives with his wife and four kids in Utah.

Learn more about Kent

If you found this article helpful.

You will love these ones as well.