Skip to main content

Posts

Showing posts with the label reactjs

HOW TO BUILD LOGIN PAGE AND SIGN UP PAGE IN REACT JS AND AWS AMPLIFY

  STEPS TO BUILD LOGIN & SIGNUP PAGE IN REACTJS,NODEJS USING AWS AMPLIFY IN VS CODE SOFTWARE REQUIREMENTS NODE JS  AWS ACCOUNT VISUAL STUDIO CODE PLEASE BE FOLLOW THESE STEPS 1.      INSTALL  NODEJS   2.      CHECK VERSION OF NODEJS IN CMD - node --version 3.      CREATE AWS ACCOUNT(IF NOT HAVE OR TEMPORARY NEEDED,Dm me  BUT,ITS COST) 4.      INSTALL VISUAL STUDIO CODE ( install Extension-Live server,AWS Toolkit) 5.      RUN THESE COMMAND IN VS CODE TERMINAL-NPM UPDATE-npm install npm -g 6.      INSTALL - AWSTOOLKIT  EXTENSION IN VSCODE 7.      ENABLE SCRIPTING IN VS CODE - Set-ExecutionPolicy -Scope CurrentUser Unrestricted (paste these higlighted cmd in vs code Terminal) 8.      RUN THESE CMD IN TERMINAL- npx create-react-app projectname( Procedure ) 9.      RUN IN VSCODE TERMINAL(INSIDE PROJECTNAME DIRECTORY)- amplify configure (AWS ACCOUNT NECESSARY)TO PERFORM THESE CMD 10. RUN IN VSCODE TERMINAL(INSIDE PROJECTNAME DIRECTORY)- amplify init 11. RUN IN VS CO

HOW TO BUILD REACTJS APPLICATION IN VS CODE

BUILD REACTJS APPLICATION IN VS CODE To run React applications, you need to install Node.js. Download and install the latest version of Node.js from the official website. Install Visual Studio Code: If you haven't already, download and install Visual Studio Code from the official website. Install the "Create React App" tool: Open a terminal or command prompt and run the following command to install the "Create React App" tool globally: npm install -g create -react-app Create a new React project: Open Visual Studio Code and create a new folder where you want to create your React project. Then, open a terminal within VS Code (Terminal > New Terminal) and navigate to the folder you just created. Run the following command to create a new React project: npx create -react-app my-app Replace "my-app" with the name of your application. This will create a new React project with all the necessary files and folders. Open the project in VS Code: Open Visual Stu