Dashboards
Applications
UI Elements
Pages
External Link
Menu Levels
Docs
Settings

Go premium to get all the cool features!

View Plans
AboutDocsPurchase
  • Welcome
  • Introduction
  • FAQ
  • Changelog
  • Getting Started
  • Installation
  • File Structure
  • Routing and Menu
  • Multi Language
  • Theme
  • Settings
  • Theme Provider
  • Styling

Installation

  1. Home
  2. /
  3. Docs
  4. /
  5. Getting Started
  6. /
  7. Installation

Environment

Gogo contains packages that require Node.js and a package manager to be installed. You may use Npm, Yarn or Bun.


  • Node

    https://nodejs.org/en/download/


  • Npm

    https://docs.npmjs.com/downloading-and-installing-node-js-and-npm


  • Yarn

    https://yarnpkg.com/getting-started/install

  • Bun

    https://bun.sh/

Installing Packages

Extract the zip file, navigate to the project route and do the installing.

1npm install
Starting the Project

Run the app in development mode. The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.

1npm run dev
Creating a Production Build

Build the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.

1npm run build