From fd8b3709039ebd1d61f252f7f043cc987edded55 Mon Sep 17 00:00:00 2001 From: iceprey Date: Fri, 6 Sep 2024 18:55:32 -0700 Subject: [PATCH] chore: bump guide node 18 --- apps/guide/src/content/02-getting-started/01-starting-out.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/guide/src/content/02-getting-started/01-starting-out.mdx b/apps/guide/src/content/02-getting-started/01-starting-out.mdx index da2cb25d8547..fdc89ba911f4 100644 --- a/apps/guide/src/content/02-getting-started/01-starting-out.mdx +++ b/apps/guide/src/content/02-getting-started/01-starting-out.mdx @@ -9,10 +9,10 @@ Our [create-discord-bot](https://github.com/discordjs/discord.js/tree/main/packa ## Creating your bot -To use discord.js, you'll need to install [Node.js](https://nodejs.org), [Deno](https://deno.com), or [Bun](https://bun.sh). discord.js v14 requires Node.js v16.11.0 or higher, but the long-term support (LTS) version is always recommended. For the purposes of this guide, we will be using Node.js. +To use discord.js, you'll need to install [Node.js](https://nodejs.org), [Deno](https://deno.com), or [Bun](https://bun.sh). discord.js v14 requires Node.js v18.20.4 or higher, but the long-term support (LTS) version is always recommended. For the purposes of this guide, we will be using Node.js. - To check if you already have Node.js installed, run _`node --version`_ in your terminal. If it outputs _`v16.11.0`_ or + To check if you already have Node.js installed, run _`node --version`_ in your terminal. If it outputs _`v18.20.4`_ or higher, then you're good to go!