0
0
Remixframework~10 mins

Creating a Remix project - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new Remix project using npm.

Remix
npm create remix@latest [1]
Drag options to blanks, or click blank then click option'
Amy-remix-app
B--template
C--install
D--typescript
Attempts:
3 left
💡 Hint
Common Mistakes
Using --template instead of my-remix-app
Forgetting to specify the app name
Using --install which is not a valid flag here
2fill in blank
medium

Complete the command to install dependencies after creating a Remix project.

Remix
cd my-remix-app && [1]
Drag options to blanks, or click blank then click option'
Aremix build
Bremix install
Cnpm start
Dnpm install
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'remix install' which is not a valid command
Running 'npm start' before installing dependencies
Using 'remix build' too early
3fill in blank
hard

Fix the error in the command to start the Remix development server.

Remix
npm [1] dev
Drag options to blanks, or click blank then click option'
Arun
Bstart
Cbuild
Dserve
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'npm start dev' which is invalid
Using 'npm build dev' which is incorrect
Using 'npm serve dev' which is not a standard npm command
4fill in blank
hard

Fill both blanks to create a new Remix project with TypeScript template and install dependencies.

Remix
npm create remix@latest [1] --typescript && cd [2] && npm install
Drag options to blanks, or click blank then click option'
A--template
B--app-name
Cmy-remix-app
Dremix-app
Attempts:
3 left
💡 Hint
Common Mistakes
Using --template or --app-name instead of the folder name for the first blank
Using a wrong folder name in the second blank
Forgetting to run npm install after cd
5fill in blank
hard

Fill all three blanks to create a Remix project named 'blog', use the JavaScript template, and start the dev server.

Remix
npm create remix@latest [1] && cd [2] && npm [3] dev
Drag options to blanks, or click blank then click option'
A--template
Bblog
Crun
D--app-name
Attempts:
3 left
💡 Hint
Common Mistakes
Using --template or --app-name instead of 'blog' for naming
Using 'npm start dev' instead of 'npm run dev'
Using wrong folder name in the second blank