Foxglove Studio is an integrated visualization and diagnosis tool for robotics, available in your browser or for download as a desktop app on Linux, Windows, and macOS.
To learn more, visit the following resources:
You can also join us on the following platforms to ask questions, share feedback, and stay up to date on what our team is working on:
Visit foxglove.dev/download or GitHub Releases to download the latest version.
Foxglove Studio is primarily written in TypeScript – contributions are welcome!
All contributors will need to agree to our Contributor License Agreement
Supported development environments: Linux, Windows, macOS
Dependencies:
- Node.js v14+
- Yarn –
npm install -g yarn
- Git LFS
- Visual Studio Code – Recommended
Getting started:
- Clone repo
- Run
yarn install
- Launch the development environment:
# To launch the desktop app (run both scripts concurrently):
$ yarn serve # start webpack
$ yarn start # launch electron
# To launch the browser app:
$ yarn web:serve
# To launch the storybook:
$ yarn storybook
# Advanced usage: running webpack and electron on different computers (or VMs) on the same network
$ yarn serve --host 192.168.xxx.yyy # the address where electron can reach the webpack dev server
$ yarn dlx electron@13.0.0-beta.13 .webpack # launch the version of electron for the current computer's platform
A Dockerfile to self-host the browser app is also available.
Other useful commands:
$ yarn run # list available commands
$ yarn lint # lint all files
$ yarn test # run all tests
$ yarn test:watch # run tests on changed files
Foxglove Studio originally began as a fork of Webviz, an open source project developed by Cruise. The codebase has since changed significantly, with a port to TypeScript, more panels, additional data sources, improved layout management, new team features, and an Extension API.