Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 1.14 KB

File metadata and controls

13 lines (12 loc) · 1.14 KB

React + Vite

  1. Ensure that npm(node package manager) is installed on system, this can be done by going to node.js website and installing the latest version, no changes need to be made to the install process
  2. When installed, open the terminal in code editor (VSCode in this case) and type "node --version" to ensure that node.js is installed
  3. Enter a directory you would like to start the project in, and using terminal, input "npm init vite #PROJECT-NAME#" to initialize the project
  4. For the initialization, when prompted to select a framework, select React (React is actually a library)
  5. Select JavaScript for the variant and Yes to Install with npm if prompted
  6. Npm may have started the webpage for you, you can check by going to "localhost:5173"
  7. If it has not, or you wish to run the server after shutting it off, enter "npm run dev" into the terminal, ensure that you are in the directory of the project you created

Downloading Workshop

  1. Git clone the repository into directory of choosing
  2. Before running, "npm install" may need to be ran to install neccessary dependencies
  3. Once dependencies are installed, run server with "npm run dev"