Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 815 Bytes

File metadata and controls

48 lines (32 loc) · 815 Bytes

Multi User Todo with Undo/Redo

A todo app that syncs adding, deleting and filtering todos across multiple sessions with Undo and Redo functionality and is persistent to new connections.

Multi-User-Todo

Instructions

  1. Clone the github repository

git clone https://github.com/syncstate/multi-user-todo-undo-redo-example.git
  1. Install local dependencies

# NPM
npm install

# Yarn
yarn install
  1. Run the server

cd server
node index.js

Runs the server at port 8000 to establish socket connection with the client.

  1. Run the App

# NPM
npm start

# Yarn
yarn start

Runs the app in the development mode.

Open http://localhost:3000 to view it in the browser.