All Projects → kentcdodds → remix-tutorial-walkthrough

kentcdodds / remix-tutorial-walkthrough

Licence: other
I live streamed working through the Remix Jokes App Tutorial

Programming Languages

typescript
32286 projects
CSS
56736 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to remix-tutorial-walkthrough

remix-guide
A platform for sharing everything about Remix
Stars: ✭ 197 (+189.71%)
Mutual labels:  remix
awesome-remix
No description or website provided.
Stars: ✭ 263 (+286.76%)
Mutual labels:  remix
why-react-hooks
Talk about React hooks
Stars: ✭ 60 (-11.76%)
Mutual labels:  kcd-edu
ng-jwt-workshop
A repo to demonstrate JWT implemented with NodeJS and AngularJS. Must download locally to use fully...
Stars: ✭ 16 (-76.47%)
Mutual labels:  kcd-edu
remix-auth
Simple Authentication for Remix
Stars: ✭ 929 (+1266.18%)
Mutual labels:  remix
shallow-to-mock
www.youtube.com/watch?v=lhudxkthtm0&list=plv5cvi1encjgcrph_e6d57krutidzgs0u
Stars: ✭ 16 (-76.47%)
Mutual labels:  kcd-edu
exo
EXO, the empathy-first framework for an accessible world.
Stars: ✭ 75 (+10.29%)
Mutual labels:  remix
web3-gear
Proxy Thor's RESTful API to Eth JSON-RPC, to support Remix, Truffle and more.
Stars: ✭ 27 (-60.29%)
Mutual labels:  remix
douyu-monitor
网页端跨平台斗鱼弹幕助手
Stars: ✭ 41 (-39.71%)
Mutual labels:  remix
OneClip
Share your clipboard with people nearby. No Setup, No Signup.
Stars: ✭ 45 (-33.82%)
Mutual labels:  remix
RemixIcon-Slides
Remix Icon for PowerPoint and Keynote
Stars: ✭ 50 (-26.47%)
Mutual labels:  remix
codegen-vs-preval-vs-macros
A comparison of the babel plugins codegen, preval, and macros
Stars: ✭ 16 (-76.47%)
Mutual labels:  kcd-edu
routes-gen
Framework agnostic CLI tool for routes parsing and generation of a type-safe helper for safe route usage. 🗺️ Remix driver included. 💿🤟
Stars: ✭ 124 (+82.35%)
Mutual labels:  remix
Phomeme
Simple sentence mixing tool (work in progress)
Stars: ✭ 18 (-73.53%)
Mutual labels:  remix
notey.app
📝 A notes app to keep track of important things
Stars: ✭ 17 (-75%)
Mutual labels:  remix
babel-config-example
No description or website provided.
Stars: ✭ 16 (-76.47%)
Mutual labels:  kcd-edu
react-mocha-workshop
🐯 A workshop repository for testing React ⚛ with Mocha ☕ --> slides
Stars: ✭ 20 (-70.59%)
Mutual labels:  kcd-edu
babel-runtime-example
An example of how to use @babel/plugin-transform-runtime
Stars: ✭ 16 (-76.47%)
Mutual labels:  kcd-edu
babel-codemod-example
An example of how to use babel as a codemod
Stars: ✭ 24 (-64.71%)
Mutual labels:  kcd-edu
remix-graphql
Utilities for using GraphQL with a Remix app
Stars: ✭ 140 (+105.88%)
Mutual labels:  remix

Welcome to Remix!

Development

From your terminal:

npm run dev

This starts your app in development mode, rebuilding assets on file changes.

Deployment

First, build your app for production:

npm run build

Then run the app in production mode:

npm start

Now you'll need to pick a host to deploy it to.

DIY

If you're familiar with deploying node applications, the built-in Remix app server is production-ready.

Make sure to deploy the output of remix build

  • build/
  • public/build/

Using a Template

When you ran npx create-remix@latest there were a few choices for hosting. You can run that again to create a new project, then copy over your app/ folder to the new project that's pre-configured for your target server.

cd ..
# create a new project, and pick a pre-configured host
npx create-remix@latest
cd my-new-remix-app
# remove the new project's app (not the old one!)
rm -rf app
# copy your app over
cp -R ../my-old-remix-app/app app
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].