Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Installation

Harshith Pabbati edited this page Aug 2, 2019 · 3 revisions

Step 1: Download nvm with the install script

Running the Install Script with cURL:

curl -o- https://github.com/creationix/nvm/v0.33.0/install.sh | bash

Or

Running the Install Script with Wget:

wget -qO- https://github.com/creationix/nvm/v0.33.0/install.sh | bash

Step 2: Verify that nvm was Properly installed

After running the install script from Step 1, nvm should have successfully installed. To ensure that nvm is up and running on your machine, you can test it with the following command:

nvm --version

Step 3: Using nvm to manage Node.js

Install the latest Node.js version

nvm install node

Install the latest Node.js LTS version

nvm install --lts

Step 4: Start Developing

Fork and Clone the Repo and start installation

git clone https://github.com/yourusername/website.git
npm install
npm start

Your site is now running at https://localhost:8000 and GraphQL at https://localhost:8000/___graphql