React

This document describes Developing UI in React using Trillo Workbench. It is similar to developing UI for against any application server using restful API.

Introduction

This guide aims to assist new users in setting up a Demo Application on their local machines. It provides clear, step-by-step instructions to ensure a smooth setup process, even for those new to React configurations. By following these directions, you'll swiftly have the application running on your system. This guide is tailored for beginners, offering a hassle-free experience to explore and test the app's functionalities firsthand.

Prerequisites

  • Node.js: Ensure you have Node.js installed. You can download it from nodejs.org.

  • Git: Make sure Git is installed on your system. You can download it from git-scm.com.

  • SSH-KEY: Ensure you've configured your SSH key for GitHub by following the setup instructions on git-scm.com.

Clone the Repository

  • Go to the project link on GitHub and copy the SSH URL of the repository.

  • Open your terminal.

  • Use the git clone command to clone the repository.

  • Command (SSH): git clone git@github.com:trilloapps/react-guide.git

Setting Up the Project

  • Navigate to the project folder in your terminal.

  • Install dependencies by running: npm install.

  • Once the installation is complete, start the development server by running: npm start.

  • This will compile your React app and open it in your default browser at http://localhost:3000.

Last updated