firepad-x
firepad-x copied to clipboard
Collaborative Text Editor Powered by Firebase
### Description ### Code sample
### Description Adding Firestore as sync provider. Also upgrading the Firebase library to the latest version Note: This is still work in progress.
### Description If firepad is initialized for two clients at the same time, and if these clients have a default content in their monaco editor, then this content is replicated...
Hey folks! Thanks for this update to firepad! Super cool to have a modern version! I was wondering if you had any plans to support firebase V9 for the tree...
### Version info Firebase:8.81 @hackerrank/firepad: 0.3.1 @monaco-editor/react: 4.3.1 Replication Steps: None, i have tried to reproduce this while collaborating linux with linux, linux with mac, mac with mac, mac with...
I was able to run Firepad successfully using plain React, but unfortunately, I couldn't execute it using Next.js Here's a running example without Firepad: https://codesandbox.io/s/react-moncao-editor-nextjs-without-firepad-u8p4k And here's what happens when...
Implementation should ideally been straightforward. As I could simply have made a client adapter that modifies an internal string. ```ts class HeadlessAdapter implements IEditorAdapter { protected _content: string; constructor() {...
I want to provide multi file support. Instantiating multiple monaco editors can affect performance. I think we can use monaco's ITextModel api, to be able to track multiple files.
Enable the creation of multiple Firepads simultaneously to facilitate real-time synchronization of files. In my use case, I aim to ensure that any changes made by one user in a...