Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 663 Bytes

File metadata and controls

34 lines (26 loc) · 663 Bytes

Letterdash

A Wordle-inspired multiplayer game built with the MEVN stack (MongoDB, Express.js, Vue.js, Node.js).
Players can guess words daily, and (hopefully coming soon) race against friends in real-time.


Features

  • Classic Wordle gameplay
  • Built with Vue 3 + Vite (frontend)
  • Express.js REST API (backend)
  • MongoDB word storage
  • Multiplayer???
  • Styled with Tailwind CSS

Tech Stack

  • Frontend: Vue 3, Vite, TailwindCSS
  • Backend: Node.js, Express.js, Socket.io (future?)
  • Database: MongoDB (local)

Run the project

Backend

cd backend
npm install
node server.js

Frontend

cd frontend
npm install
npm run dev