A full-stack link management application where users can save, categorize, and track their important links in one place.
- 🔐 User Authentication (Register/Login)
- 📁 Category-based link organization
- 🔗 Shortened links support
- 📊 Click tracking for each link
- 🧠 Clean and simple UI
- React (Vite)
- TypeScript
- Tailwind CSS
- Node.js
- Express.js
- MongoDB (Mongoose)
git clone https://github.com/Misbah374/LinkNest.git
cd linknestcd backend
npm installCreate a .env file:
PORT=5000
MONGO_URI=your_mongodb_uri
JWT_SECRET=your_secret
Run backend:
npm run devcd frontend
npm installCreate a .env file:
VITE_API_URL=http://localhost:5000
Run frontend:
npm run dev