Setting Up
This tutorial is geared at first-time users who want detailed instructions on how to go from zero to a Docusaurus website that has versions. Let's start!
#
Install Node.jsNode.js is an environment that can run JavaScript code outside of a web browser and is used to write and run server-side JavaScript apps.
Docusaurus' minimum supported Node.js version is Node 8, but more recent versions will work as well.
- Open your Terminal.
- If you have
brew
on your OS, run the following command to install Node (a JavaScript runtime that allows you to run JavaScript on the server) andnpm
the package manager (allows you to install npm modules from your terminal).
Alternatively, you can download an installer from the Node.js homepage.
#
Check your Node.js installationCheck that you have the minimum required version installed by running the following command:
You should see a version larger than Node 8.
#
Install Yarn (Optional)We highly recommend you to install Yarn, an alternative package manager that has superb performance for managing your NPM dependencies. Check it out here.
You can still proceed with the tutorial without Yarn.
#
Create a GitHub Repository- Go to https://github.com/ and sign up for an account if you don't already have one.
- Click on "New Repository" or go to https://github.com/new.
- Name your repository without spaces. For e.g.
docusaurus-tutorial
. - Proceed to create the repository without adding
.gitignore
or a license.
- Clone your repository to your local machine:
cd
into the repository which you just created.
#
Install the Docusaurus init commandDocusaurus comes with a command line tool to help you scaffold a Docusaurus site with some example templates. Let's install the installer!
- Run the following command:
or if you have Yarn: