How to run an existing NetSuite Integration React WebApp project in a new system

We might need to edit or update an existing NetSuite Integration React WebApp project in a new system. Here are the steps for that:

  • Clone the repository in VS Code. Choose the correct repository branch before cloning.
  • Open the project directory in cmd.
  • Make sure the correct Node Virtual Machine is installed. Use ‘nvm install <version_number>’ to install a particular version.
  • Make sure the correct node version is used. Type ‘nvm use <version_number>’ to select the required version
  • Install the necessary node packages by typing ‘npm install’. If installation fails, remove the ‘package-lock.json’ file and try again.
  • Once all the node packages are installed, type ‘npm start’ to start the development server on the localhost server. The project will be rendered on localhost IP (with the port specified in the project code) or the URL defined in the project.

Leave a comment

Your email address will not be published. Required fields are marked *