sp.wack dabf0ce3af fix(frontend): Trigger VSCode URL query only when runtime is active (#5622) 11 luni în urmă
..
.husky 8bfa61f3e4 Run package commands directly (#3013) 1 an în urmă
__tests__ fdc00fbca0 Fix issue #5605: [Bug]: UI regression, Jupyter tab has no vertical scroll bar, cannot see all actions (#5607) 11 luni în urmă
public 42a536d450 Revert "chore(deps): bump the version-all group across 1 directory with 30 updates" (#5548) 1 an în urmă
scripts e32d95cb1a lint: simplify hooks already covered by Ruff (#1204) 1 an în urmă
src dabf0ce3af fix(frontend): Trigger VSCode URL query only when runtime is active (#5622) 11 luni în urmă
tests becb17f0c8 feat(frontend): Utilize TanStack Query (#5096) 1 an în urmă
.env.sample 6fe5482b20 [ALL-571] chore(frontend): Move `saas`-related configs to `config.json` (#4496) 1 an în urmă
.eslintrc becb17f0c8 feat(frontend): Utilize TanStack Query (#5096) 1 an în urmă
.gitignore a378ff0965 chore(frontend): Migrate from Remix to React Router 7 (#5304) 1 an în urmă
.npmrc 0534c14279 feat: i18n (#723) 1 an în urmă
.prettierrc.json e32d95cb1a lint: simplify hooks already covered by Ruff (#1204) 1 an în urmă
README.md b9b6cfd406 refactor(frontend) Refactor and move components (#5290) 1 an în urmă
global.d.ts 6fe5482b20 [ALL-571] chore(frontend): Move `saas`-related configs to `config.json` (#4496) 1 an în urmă
index.html 01ae22ef57 Rename OpenDevin to OpenHands (#3472) 1 an în urmă
package-lock.json ed3916b79b chore(deps-dev): bump @tanstack/eslint-plugin-query from 5.61.4 to 5.62.1 in /frontend in the eslint group (#5556) 1 an în urmă
package.json ed3916b79b chore(deps-dev): bump @tanstack/eslint-plugin-query from 5.61.4 to 5.62.1 in /frontend in the eslint group (#5556) 1 an în urmă
playwright.config.ts becb17f0c8 feat(frontend): Utilize TanStack Query (#5096) 1 an în urmă
postcss.config.js 658b860d04 feat: support tailwind and daisyUI (#266) 1 an în urmă
react-router.config.ts a378ff0965 chore(frontend): Migrate from Remix to React Router 7 (#5304) 1 an în urmă
tailwind.config.js 6a6ce5f3ee Fix issue #5478: Add color to the line next to "Ran a XXX Command" based on return value (#5483) 1 an în urmă
test-utils.tsx 6a6ce5f3ee Fix issue #5478: Add color to the line next to "Ran a XXX Command" based on return value (#5483) 1 an în urmă
tsconfig.json a378ff0965 chore(frontend): Migrate from Remix to React Router 7 (#5304) 1 an în urmă
vite-env.d.ts cac687508f cra -> vite (#47) 1 an în urmă
vite.config.ts a378ff0965 chore(frontend): Migrate from Remix to React Router 7 (#5304) 1 an în urmă
vitest.setup.ts 6a6ce5f3ee Fix issue #5478: Add color to the line next to "Ran a XXX Command" based on return value (#5483) 1 an în urmă

README.md

Getting Started with the OpenHands Frontend

Overview

This is the frontend of the OpenHands project. It is a React application that provides a web interface for the OpenHands project.

Tech Stack

  • Remix SPA Mode (React + Vite + React Router)
  • TypeScript
  • Redux
  • TanStack Query
  • Tailwind CSS
  • i18next
  • React Testing Library
  • Vitest
  • Mock Service Worker

Getting Started

Prerequisites

  • Node.js 20.x or later
  • npm, bun, or any other package manager that supports the package.json file

Installation

# Clone the repository
git clone https://github.com/All-Hands-AI/OpenHands.git

# Change the directory to the frontend
cd OpenHands/frontend

# Install the dependencies
npm install

Running the Application in Development Mode

We use msw to mock the backend API. To start the application with the mocked backend, run the following command:

npm run dev

This will start the application in development mode. Open http://localhost:3001 to view it in the browser.

NOTE: The backend is partially mocked using msw. Therefore, some features may not work as they would with the actual backend.

Running the Application with the Actual Backend (Production Mode)

There are two ways to run the application with the actual backend:

# Build the application from the root directory
make build

# Start the application
make start

OR

# Start the backend from the root directory
make start-backend

# Build the frontend
cd frontend && npm run build

# Serve the frontend
npm start -- --port 3001

Environment Variables

TODO

Project Structure

frontend
├── __tests__ # Tests
├── public
├── src
│   ├── api # API calls
│   ├── assets
│   ├── components
│   ├── context # Local state management
│   ├── hooks # Custom hooks
│   ├── i18n # Internationalization
│   ├── mocks # MSW mocks for development
│   ├── routes # React Router file-based routes
│   ├── services
│   ├── state # Redux state management
│   ├── types
│   ├── utils # Utility/helper functions
│   └── root.tsx # Entry point
└── .env.sample # Sample environment variables

Components

Components are organized into folders based on their domain, feature, or shared functionality.

components
├── features # Domain-specific components
├── layout
├── modals
└── ui # Shared UI components

Features

  • Real-time updates with WebSockets
  • Internationalization
  • Router data loading with Remix
  • User authentication with GitHub OAuth (if saas mode is enabled)

Testing

We use Vitest for testing. To run the tests, run the following command:

npm run test

Contributing

Please read the CONTRIBUTING.md file for details on our code of conduct, and the process for submitting pull requests to us.

Troubleshooting

TODO