ReactStore Documentation

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

SETUP FOR HCL COMMERCE REACT STORE SDK ENVIRONMENT

INSTALLATION GUIDE:
Required Software’s:

1. Microsoft visual studio code


2. Node JS 14.6.1 LTS , NPM version-6.14.12
3. Git
4. Python
5. HCL_Commerce_Store_9.1.0.0.bundle

Installation of Microsoft visual studio code:

1. Inside VDI, search for the “software center” from the start menu and open it
2. Search for “Microsoft Visual studio code” in the search box as shown in below screenshot.

3. It will give you two files- uninstallation file and installation file.
Click on the installation file as shown in below screen shot

4. It will install Microsoft visual studio code in your system.


5. Now you will be able to see visual studio code in your system.
Installation of Node JS 14.6.1 LTS:

 Open the below mentioned link and follow the guidelines for installing the node JS (14.6.1 LTS
version)
https://github.ford.com/WaMCOE/web-devguides/tree/master/node-and-npm/npm
%20installation%20and%20configuration
 Once the installation is completed, check the Node JS version and NPM version in command
prompt as below.
Installation of Git:

Visit the below mentioned site and download GIT on windows.


https://git-scm.com

Downloading of HCL_Commerce_Store_9.1.9.0. bundle and cloning to the project:

1. Download the ‘HCL_Commerce_Store_9.1.9.0. bundle’ file from the share point.


2. Copy the downloaded bundle file to local disk and open GIT Bash.
3. Run the below command in GIT Bash terminal in order to clone the project from GIT bundle.
git clone -c core.longpaths=true HCL_Commerce_Store_9.1.0.0.bundle
HCL_Commerce_Store

1.
git clone -c core.longpaths=true HCL_Commerce_Store_9.1.9.0.bundle
HCL_Commerce_Store

git clone -c core.longpaths=true HCL_Commerce_NextJS_Store_9.1.14.0.bundle


HCL_Commerce_Store

where,
HCL_Commerce_Store_9.1.0.0.bundle - The filename of the bundle you are cloning.
HCL_Commerce_Store - The name of the git project that you are creating.

Now, Git project containing the Store SDK is created at the HCL_Commerce_Store folder.

PROJECT SETUP:
Once your project got created, open it in Microsoft visual studio code and and run the below
commands.

‘npm install’- Installs the node packages.

‘npm start’ - Run the APP in development mode.

‘npm run mock’ - Run the APP in development mode using mock data services.

You might also like