Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 645 Bytes

frameworks-setup.md

File metadata and controls

37 lines (26 loc) · 645 Bytes

Remix.run

# Will ask you questions about the setup you want
npx create-remix@latest

# Starts the development server.
npm run dev

# Builds the app for production.
npm run build

# Runs the built app in production mode.
npm start

Next.JS

npx create-next-app@latest --typescript

# Starts the development server.
npm run dev

# Builds the app for production.
npm run build

# Runs the built app in production mode.
npm start

Or you can start with one of their examples from this site: https://github.com/vercel/next.js/tree/canary/examples

npx create-next-app --example [example-name] [local-folder-name]