Socket React App
Table of Contents
-
Clone the repo
git clone https://github.com/sashkhen/auctionion.git
-
Update network address for client and server to point at each other: ./client/src/consts.js, ./server/variables.env
-
Start a project
# to run server cd server npm i npm run start # to run client cd client npm i npm run start
Navigate to the link displayed in the terminal (💻 / client).
-
Create /asset
-
Browse /assets
-
Create /auction
-
Browse /auctions
-
Browse /auction/:id
-
Update /auction/:id
-
Delete /auction/:id
-
Make a bid when /auction/:id is active
Auctions are implemented as socket.io rooms. This means you need to be browsing a room to see auction updates realtime.