https://github.com/yewomhango/syncvas
Synchronous Drawing Canvas
https://github.com/yewomhango/syncvas
canvas drawing drawing-app express expressjs typescript websocket websockets
Last synced: about 2 months ago
JSON representation
Synchronous Drawing Canvas
- Host: GitHub
- URL: https://github.com/yewomhango/syncvas
- Owner: YewoMhango
- Created: 2022-04-06T15:03:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-23T06:20:32.000Z (over 3 years ago)
- Last Synced: 2025-10-22T21:44:45.464Z (8 months ago)
- Topics: canvas, drawing, drawing-app, express, expressjs, typescript, websocket, websockets
- Language: TypeScript
- Homepage:
- Size: 464 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Syncvas (Synchronous Drawing Canvas)
A basic drawing app demo for users to draw on the same canvas on different devices and have everything synchronised between them.
WebSockets are used for communication and Node.js + express is used for the backend, while React is used for the frontend
It's not meant to be a full-featured drawing app, but just for basic illustrative purposes so far.
# Usage Steps
1. Run the `npm install` command in both the `client` and `server` directories
2. Build the frontend code by `cd`'ing into the `client` directory and running:
```
npm run build
```
3. Then, change back into the `server` directory and run:
```
npm start
```