Setting Up a Remix Project

InstructorJon Meyers

Share this video with your friends

Send Tweet

Remix is a web application framework built on top of React, that gives you sprinkles of server when you need it - fetching data on page load, mutating values in a db etc. In this lesson, we use the create-remix package to setup our new app. Additionally, we run the project is development mode with npm run dev and update the content on our index route.

Code Snippets

Create a Remix app

npx create-remix <name-of-project>

Resources