This is just a simple google docs thing, me playing around with Remix and sockets.
TODO: from socket.io to yjs sockets, support CRDT.
After forking and cloning, run npm install, then you need two environment variables:
-
BASE_URL_DEV: set tohttp://localhost:3000/ -
PORT: set to3000
You'll need to run two terminals (or bring in a process manager like concurrently/pm2-dev if you like):
Start the Remix development asset server
npm run devIn a new tab start your express app:
npm run start:devThis starts your app in development mode, which will purge the server require cache when Remix rebuilds assets so you don't need a process manager restarting the express server.
To run the tests: npm run test.