Skip to main content

Tutorial Intro

Let's discover What we should do in less than 5 minutes.

Getting Started

Get started by installing.

for node and npm version each project will have their recommended version.

What you'll need

Clone Project

Clone a project site using git.

The project source will automatically be added to your machine after you run the command:

git clone project-url

You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor. Followed by typing

npm install

The command will installs all necessary dependencies you need to run The Project.

Start your site

Run the development server:

cd your-project-source
npm start

The cd command changes the directory you're working with. In order to work with your newly created Project site, you'll need to navigate the terminal there.

The npm start command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.