Full-stack chatbot with React frontend and Node.js/Express backend.
cd backend
npm install
# Create .env
PORT=3000
MONGO_URI=mongodb://localhost:27017/chatbot
npm startcd frontend
npm install
npm run devBackend: http://localhost:3000
Frontend: http://localhost:5173
POST /bot/v1/message
{ "text": "Your message" }Backend: npm start
Frontend: npm run dev | build | preview | lint
ISC