Chrome Platform Status
Mission
chromestatus.com is the official tool used for for tracking feature launches in Blink (the browser engine that powers Chrome and many other web browsers). This tool guides feature owners through our launch process and serves as a primary source for developer information that then ripples throughout the web developer ecosystem.
Get the code
For a one-click setup that leverages devcontainers, check out the devcontainer
README. Otherwise, to continue setting up locally:
git clone https://github.com/GoogleChrome/chromium-dashboard
Installation
- Install gcloud and needed components:
- Before you begin, make sure that you have a java JRE (version 8 or greater) installed. JRE is required to use the DataStore Emulator and openapi-generator-cli.
- Google App Engine SDK for Python. Make sure to select Python 3.
gcloud init
gcloud components install cloud-datastore-emulator
gcloud components install beta
- Install other developer tools commands
- node and npm.
- Python virtual environment:
sudo apt install python3.11-venv
- We recommend using node version 24
- Use
node -v to check the default node version
nvm use 24 to switch to node 24
cd chromium-dashboard
- Install JS an python dependencies:
make setup
- Note: Whenever we make changes to package.json or requirements.txt, you will need to run
make clean-setup.