A realtime collaborative IDE with code execution, intellisense, and built-in USACO submissions. Designed primarily for Competitive Programming and USACO, with mobile support for coding on the go.
This IDE is built and maintained by Nathan Wang and Benjamin Qi, and is part of the Competitive Programming Initiative.
This project uses the Firebase Realtime Database. This tutorial is helpful (even though Cloud Firestore is not what's being used here). You'll need to install the firebase CLI and Node.js 18.
npm install
npm run dev
TODO: Update this outdated section
npm run dev
will start a Firebase emulator for you. By default, the dev server uses a local firebase emulator and the production YJS server. To change these settings, edit .env
.
Note: If you get a firebase emulators timeout error on Mac, see firebase/firebase-tools#2379 (comment) and Issue #67 in this repo.
TODO: Update this outdated section
npm run dev # Start the dev server in a separate terminal
npm run test
We use Playwright for our e2e tests. The VSCode extension for Playwright can be useful for debugging tests.
Note: If you are using the production YJS servers, the Copy Files test will fail because the YJS_SECURITY_KEY
environment variable needs to be set. For local development, feel free to ignore the Copy Files CI test. Alternatively, you can run a local YJS server (see the ide-yjs
repository) and use that instead.
You can update the Firebase configuration (if you want to use a custom firebase project, for example) by modifying src/lib/firebase/firebase.svelte
.
- Code execution through a custom Serverless Online Judge
- Realtime collaboration with YJS
- Codingame's VSCode / Monaco Editor (desktop)
- Codemirror 6 Editor (mobile)
- Code intellisense with LSP servers running on Modal
- Svelte 5 and SvelteKit
- Tailwind CSS 4
- Firebase Realtime Database
- Playwright for end-to-end testing
Infrastructure monitoring is generously provided by Datadog's OSS program.
We use TypeFox's monaco-langaugeclient, which internally uses codingame's monaco-vscode packages. To update monaco-languageclient:
- Consult the Changelog
- Test that the language client still works, and that the EOL patch still works.
If you have any questions, please open an issue or reach out to us at [email protected].
See yjs/y-monaco#6 for steps to reproduce the issue.
To fix, replace something similar to
var n = this.configurationService.getValue('files.eol', {
overrideIdentifier: t,
resource: e,
});
return n && 'auto' !== n ? n : d.isLinux || d.isMacintosh ? '\n' : '\r\n';
with
var n = this.configurationService.getValue('files.eol', {
overrideIdentifier: t,
resource: e,
});
return n && 'auto' !== n ? n : d.isLinux || d.isMacintosh ? '\n' : '\n';
using package-patch
. You can use grep -r "this.configurationService.getValue('files.eol'" node_modules/ -l
to find relevant files to patch.
If firebase emulators:exec
fails for unknown reason, try running firebase emulators:exec "yarn playwright test" || cat firebase-debug.log
.
- Compile error, stdout, stderr
- Too large input
- Too large output
- Classrooms
- Copying files (#64, this broke already lol)