diff --git a/docs/content/admin/quickstart.mdx b/docs/content/admin/quickstart.mdx index 6e87c7f1b3..516a40f254 100644 --- a/docs/content/admin/quickstart.mdx +++ b/docs/content/admin/quickstart.mdx @@ -34,7 +34,9 @@ As the admin dashboard is a plugin installed on the Medusa Backend, you must hav ### Node.js -The Admin uses [Vite v4.1.4](https://vitejs.dev/guide/#scaffolding-your-first-vite-project) which requires v14.8+ or v16+ of Node.js. You can check which version of Node you have by running the following command: +The Admin uses [Vite v4.1.4](https://vitejs.dev/guide/#scaffolding-your-first-vite-project) which requires v14.8+ or v16+ of Node.js, and as Medusa requires v16 or greater it's recommended you use v16+ of Node.js. + +You can check which version of Node you have by running the following command: ```bash noReport node -v diff --git a/docs/content/create-medusa-app.mdx b/docs/content/create-medusa-app.mdx index 706f4dadf4..4d6569dc52 100644 --- a/docs/content/create-medusa-app.mdx +++ b/docs/content/create-medusa-app.mdx @@ -29,7 +29,7 @@ If you only want to set up a Medusa backend, follow [this quickstart guide](./de ### Node.js -Medusa supports Node versions 14 and 16. You can check which version of Node you have by running the following command: +Medusa supports Node v16+. You can check which version of Node you have by running the following command: ```bash noReport node -v diff --git a/docs/content/development/backend/install.mdx b/docs/content/development/backend/install.mdx index 8d393d9e6e..7b1524f77e 100644 --- a/docs/content/development/backend/install.mdx +++ b/docs/content/development/backend/install.mdx @@ -13,7 +13,7 @@ This document will guide you through setting up your Medusa backend in a three s ### Node.js -Medusa supports Node versions 14 and 16. You can check which version of Node you have by running the following command: +Medusa supports Node v16 or greater. You can check which version of Node you have by running the following command: ```bash noReport node -v diff --git a/docs/content/development/backend/prepare-environment.mdx b/docs/content/development/backend/prepare-environment.mdx index 005b311fa1..be696beb34 100644 --- a/docs/content/development/backend/prepare-environment.mdx +++ b/docs/content/development/backend/prepare-environment.mdx @@ -20,7 +20,7 @@ Node.js is the environment that makes it possible for Medusa to run, so you must :::caution -Medusa supports versions 14 and 16 of Node.js. You can check your Node.js version using the following command: +Medusa supports v16 or greater of Node.js. You can check your Node.js version using the following command: ```bash noReport node -v diff --git a/docs/content/starters/nextjs-medusa-starter.mdx b/docs/content/starters/nextjs-medusa-starter.mdx index 4a1ec8f82e..c280c836f5 100644 --- a/docs/content/starters/nextjs-medusa-starter.mdx +++ b/docs/content/starters/nextjs-medusa-starter.mdx @@ -41,6 +41,14 @@ Instead of manually following this guide to install then later deploy the Next.j This document assumes you already have a Medusa backend installed. If you don’t, please follow the [Quickstart guide for the Medusa backend](../development/backend/install.mdx) to learn how to do it. +You should also have Node.js with v16 or greater installed. You can check your Node.js version with the following command: + +```bash noReport +node -v +``` + +You can install Node from the [official website](https://nodejs.org/en/). + --- ## Installation