Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mehul237/livedraw
Users can draw and collaborate in real-time.
https://github.com/mehul237/livedraw
css3 express-js html5 javascript socket-io
Last synced: 16 days ago
JSON representation
Users can draw and collaborate in real-time.
- Host: GitHub
- URL: https://github.com/mehul237/livedraw
- Owner: Mehul237
- License: mit
- Created: 2024-09-12T16:37:12.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T17:42:22.000Z (2 months ago)
- Last Synced: 2024-10-31T13:05:03.923Z (16 days ago)
- Topics: css3, express-js, html5, javascript, socket-io
- Language: JavaScript
- Homepage: https://livedraw.onrender.com/
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Project Desciption:
- The project comprises of basic openboard functionalities such as, writing, erasing, downloading the canvas, adding notes (with minimising it, closing it, dragging it around on the page), uploading the image (features same as of notes), undo and redo actions.
- Added realtime drawing functionality using Socket.io by connecting to server using Express.js
#### Realtime drawing:
- Realtime drawing can be achieved by the people using same link at same time.
### Tech Stack used:
- HTML
- CSS
- JavaScript
- Express.js
- Socket.io
### Key Features
This real-time whiteboard provides the user with following features:- Draw using pencil (3 different colors, scale the pencil size)
- Erase the drawn area using eraser(scale the eraser size)
- Include a sticky note to make notes (feature to add multiple sticky notes, move sticky note around the drawing area, minimize and close the sticky note)
- Upload an image or gif (feature to add multiple files,feature to move the file, close the file)
- Download the drawing part on the user screen
- Redo or undo the drawing content changes.
- Zoom in or zoom out the drawing content.
- Real-time virtual environment for drawing and erasing.### Run on your local machine:
Replace `"https://livedraw.onrender.com/"` with `http://localhost:5000/` in `index.html`file.
Open the folder in VS code. Open terminal and write these commands:
```
npm init
```
Press Enter. Then,
```
npm install socket.io
npm install --save-dev nodemon
node app.js
```
Now open the browser and type `localhost:5000`.