Introduction
Projects are currently a beta feature available to Teams. A Project is a set of connected, Replit Apps for better collaborative development and versioning. Within a Project, you can:- “Fork” a Replit App (i.e. make a copy) to work on a feature in isolation, and merge your changes back in when ready
- View all ongoing development in one place
Advantages of Projects
Projects are a great option:- When you are collaborating with a team where you each need your own copy of the code when working on features
- When you want an easy way to leverage version control. Using a version control system has many advantages: you can trace the history of all files in your codebase to see what changed and why, you experiment and collaborate using branching & merging, you can rollback to a previous version easily when something breaks, etc.
Project Structure
Every Project is organized around having a main Replit App that is the source of truth. In this example Project, “AnvilWebServer” is the main Replit App. Each team member has their own fork where they can work, e.g. “MadisonFitch-07-03” is a fork off of the main Replit App.
- Make changes in a fork, e.g. “MadisonFitch-07-03”
- Use the Project tool in the workspace to preview your changes
- Use that tool to merge your changes into the main Replit App when they are ready
Creating a Project
To get started, fork any Replit App in your organization and you’ll be prompted to turn it into a Project:

Previewing and merging changes
When you open the fork in the workspace, you’ll see a Project tool open which informs you that you have no changes from the main Replit App yet:


Using git
In the previous section, the “Merge changes…” button did some magic by executing a few git commands. You don’t need to know anything about git to use Projects, but if you are familiar with git, you can take more control over how changes are made in a Project.
If you modify you fork again to add a joke endpoint, you’ll see changes in the Project tool:

git
command in the shell) to commit specific changes when merging:



Project Navigation in the Workspace
When in the workspace, the header bar will provide some extra navigation options and controls:- Switch to other Replit Apps in the Project
- Go to the dashboard
- Create a new fork

Project Dashboard
You can visit the Project’s dashboard from the sidebar, or via the workspace header link. You’ll see:- The main replit app
- All forks
- Everyone who is online currently in the Project
- Settings
