Add Co-Chuck: WebChucK IDE with Multi-User Collaboration and Synchronized ChucK Shreds #47
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Co-Chuck: WebChucK IDE with Multi-User Collaboration and Synchronized ChucK Shreds
Co-Chuck is an enhanced version of the WebChuck IDE that enables multi-user collaboration, concurrent code editing, and project file synchronization. It also synchronizes ChucK Shred playback across distributed devices, allowing users to collaboratively write and execute ChucK code directly in their browsers—just like Google Docs, but for music/audio programming!
More information is documented at
COCHUCK_README.md
.Pull Request Description
The following description provides an overview of the changes made to implement Co-Chuck.
./.gitignore
: Adds Python cache files./api/
: Adds the FastAPI-based Python backend for Co-Chuck session support (should be deployed on a public server; step-by-step deployment instructions at./COCHUCK_README.md
)../assets
: Adds and SVG/PNG/GIF files used inCOCHUCK_README.md
../index.html
: Adds components for session management../package.json
and./package-lock.json
: Adds dependencies for Co-Chuck (text diff library and asynchronous lock)./public/img
: Adds two icons for Shred broadcast../src/
: Most additions are in/src/components/session
. Other modifications in other places are mostly there to add the new functionalities defined in/src/components/session
.