Reader small image

You're reading from  Full Stack Web Development with Remix

Product typeBook
Published inNov 2023
Reading LevelIntermediate
PublisherPackt
ISBN-139781801075299
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Andre Landgraf
Andre Landgraf
author image
Andre Landgraf

Andre is a full stack developer from Germany. He graduated with an MS in Information Systems from the Technical University of Munich and was also awarded an MS in Computer Science from Sofia University in Palo Alto. Andre currently lives in Cupertino, California, and he works as a Software Engineer at LinkedIn. Andre loves learning, writing, and speaking about all things web. In his free time, he tutors aspiring developers and builds for the web.
Read more about Andre Landgraf

Right arrow

Creating a “Hello World!” Remix app

This section walks you through the creation of a new Remix application using the create-remix CLI script. The script is maintained by the Remix team and used to bootstrap new Remix projects:

  1. Open a new terminal window and run the following command:
    npx create-remix@2

    We use npx to execute the create-remix script. npx is part of npm and stands for Node Package Execute. The command lets us run remote node scripts locally on our machine – pretty nifty!

    Note that we specify to use the latest available version of create-remix v2. The examples in this book are based on Remix v2. By adding the @2 postfix to the package name, we ensure that our first demo application installs a Remix v2 application.

    For projects outside of this book, we recommend using the following command instead to work with the latest stable version of Remix:

    npx create-remix@latest
  2. If you are asked by npx to install create-remix, enter y to answer with yes...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Full Stack Web Development with Remix
Published in: Nov 2023Publisher: PacktISBN-13: 9781801075299

Author (1)

author image
Andre Landgraf

Andre is a full stack developer from Germany. He graduated with an MS in Information Systems from the Technical University of Munich and was also awarded an MS in Computer Science from Sofia University in Palo Alto. Andre currently lives in Cupertino, California, and he works as a Software Engineer at LinkedIn. Andre loves learning, writing, and speaking about all things web. In his free time, he tutors aspiring developers and builds for the web.
Read more about Andre Landgraf