DevConnect is a full-stack platform that connects developers, allowing them to share projects, collaborate, and interact with a tech community. It includes user authentication, profiles, posts, messaging, and more.
- User registration, login, and secure authentication
- Developer profiles and portfolios
- Post creation, likes, comments
- Real-time messaging
- REST APIs with Node.js + Express
- React.js frontend with Context API
- MongoDB or SQL database support
DevConnect-FullStack-Application/
├── backend/
│ ├── controllers/
│ ├── models/
│ ├── routes/
│ ├── config/
│ └── server.js
│
├── frontend/
│ ├── public/
│ ├── src/
│ │ ├── components/
│ │ ├── pages/
│ │ ├── context/
│ │ ├── services/
│ │ └── App.js
│ └── package.json
│
├── .gitignore
├── package.json
├── README.md
└── LICENSEgit clone https://github.com/haripriyatripathi/DevConnect-FullStack-SaaS-Application.gitcd "DevConnect-FullStack-Application"cd backend
npm installnode server.jscd ../frontend
npm install
npm starthttp://localhost:3000
- Start backend first, then frontend.
- React Context is used for state management.
- Backend uses REST APIs.
This project is licensed under the MIT License.