How to Install MedusaJs on Windows 11
MedusaJs is a framework for building backend applications using Node.js. Here's how you can install it on a Windows 11 operating system:
Prerequisites
Before installing MedusaJs, make sure you have the following prerequisites installed on your system:
Installation
Open the command prompt or terminal window on your system.
Clone the MedusaJs repository from GitHub using the following command:
git clone https://github.com/medusajs/medusa.gitThis will create a new directory named
medusain your current working directory.Next, navigate to the
medusadirectory by running the following command:cd medusaInstall the dependencies required for MedusaJs by running the following command:
npm installOnce the installation is complete, start the MedusaJs server by running the following command:
npm run startThis will start the server on the default port 9000.
You can now access the MedusaJs server in your web browser by navigating to
http://localhost:9000.
Congratulations! You have successfully installed MedusaJs on your Windows 11 system.