Skip to content

Getting Started

Daniel Ciao edited this page Aug 13, 2017 · 2 revisions

Install Prerequisite Softwares

Linux

  1. Install git:
    sudo apt-get update
    sudo apt-get install git
    
  2. Install NPM:
    curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
    sudo apt-get install -y nodejs
    sudo apt-get install -y build-essential
    
  3. Install Node.js:
    sudo npm install --global n
    sudo n latest
    

MacOS

  1. Install Brew
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    
  2. Install git
    brew install git
    
  3. Install NPM and Node.js
    brew install node
    

Windows

  1. Download and install Git here
  2. Download and install NPM and Node.js here

Running

  1. Install dependencies
    npm install
    
  2. Start the server
    npm run start:web
    
  3. Enyoy
Clone this wiki locally