Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 23, 2022 12:16 pm GMT

How to run react on VSCode

Till now I was practicing react on codesandbox. Since I am familiar with VSCode and its integration with git, I thought why not run react in VSCode and after figuring it out I thought to write a guide for fellow coders.

Hence, here it goes

  1. Since you are here, I am assuming that you already have Visual Studio Code installed. If not then go to this link: https://code.visualstudio.com/download and install VSCode as per your system specification.
    1.PNG

  2. Now that you have installed vscode, it's time to install nodejs and npm. If you don't know what is npm, don't worry, just do what I say and you are good to go.
    Go to this link: https://nodejs.org/en/download/ (google "nodejs download" and this will be the first link).
    2.PNG
    I am on windows hence I have downloaded the windows version. You can download as per the platform you are on. Just install the default settings, they are good enough (click next...next...and...next). Although you can read terms and conditions.

  3. Now open the folder in which you want yours react code (and files) to store in VSCode.

  4. Open terminal (ctrl + ) in VSCode and paste the below-mentioned command in the terminal and hit enter:

    npx create-react-app my-app
    `
    Now wait and let the magic happen.

    on a side note: Create React App is a comfortable environment for learning React, and is the best way to start building a new single-page application in React. It sets up your development environment so that you can use the latest JavaScript features, provides a nice developer experience, and optimizes your app for production.
    3.PNG

  5. If the above command ran properly you can skip this step. However, if you got an error as shown below in the picture, the solution is to simply restart VS Code ( as this could be the result of installing Node.js while having VS Code open).
    6.PNG

  6. The above step automatically created the template required for react in the my-app folder.
    4.PNG

  7. Now go ahead and write some code in app.js (my-app/src/app.js).

  8. To run the code, first, write the below command in the terminal to enter the my-app folder.

    cd my-app

  9. Now, write the below command to finally run your code:

    npm start

  10. Congrats, you have done it.
    5.PNG
    Now, you can just make and save changes in app.js and see those changes reflected in the browser.

That's all folks.

If you have any doubt ask me in the comments section and I'll try to answer as soon as possible.

I write one article every day related to web development (yes, every single day). Follow me here if you are learning the same..

If you love the article follow me on Twitter: @therajatg

If you are the Linkedin type, let's connect: https://www.linkedin.com/in/therajatg/

Have an awesome day ahead !


Original Link: https://dev.to/therajatg/how-to-run-react-on-vscode-3om2

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To