Install Medusa Backend
This document will guide you through setting up your Medusa backend in a three steps.
Prerequisites
Node.js
Medusa supports Node versions 14 and 16. You can check which version of Node you have by running the following command:
node -v
You can install Node from the official website.
Git
Git is required for this setup. You can find instructions on how to install it from the Set up your dev environment documentation.
Create a Medusa Backend
It is recommended to use Yarn for the installation process as it's much faster than using NPM.
1. Install Medusa CLI
- npm
- Yarn
npm install @medusajs/medusa-cli -g
yarn global add @medusajs/medusa-cli
If you run into any errors while installing the CLI tool, check out the troubleshooting guide.
2. Create a new Medusa project
medusa new my-medusa-store --seed
3. Start your Medusa backend
cd my-medusa-store
medusa develop
Test the Backend
After these three steps and in only a couple of minutes, you now have a complete commerce engine running locally. You can test it out by sending a request using a tool like Postman or through the command line:
curl localhost:9000/store/products
Next Steps
Learn about the Architecture
Medusa backend is made up of different resources that make it a powerful server. Get an overview of them in the Medusa Architecture Overview documentation.
Set Up Development Environment
For an optimal experience developing with Medusa and to make sure you can use its advanced functionalities, you'll need to install more tools such as Redis or PostgreSQL.
Follow this documentation to learn how to set up your development environment.
Backend Configurations
It's important to configure your Medusa backend properly and learn how environment variables are loaded.
You can learn more about configuring your backend and loading environment variables in the Configure your Backend documentation.
File Service Plugin
To upload product images to your Medusa backend, you must install and configure one of the following file service plugins:
- MinIO (Recommended for local development)
- S3
- DigitalOcean Spaces