Skip to content

Installation

Prerequisites

  • conda (Anaconda or Miniconda)
  • Git

Steps

1. Create a conda environment with Node.js

conda create -n webviz nodejs
conda activate webviz

2. Clone and install dependencies

git clone https://github.com/BCDA-APS/webviz.git
cd webviz
npm install

3. Start the development server

npm run dev

Open the URL shown in the terminal (typically http://localhost:5173).

Production Build

npm run build
npm run preview   # serve the built output locally

The built files will be in dist/ and can be served by any static web server.