A sleek and powerful text editing platform built using the MERN Stack. Easily submit, view, and manage user-generated content with smooth interaction and real-time updates all within a modern, minimal UI.
- Frontend: React.js
- Backend: Node.js, Express.js
- Database: MongoDB
- Play with your own text and also review your experience
- Displays comments in real-time
- Enabled Dark Mode and switch easily between Light and Dark Mode
Prerequisite: Make sure MERN Stack is set up on your local PC properly.
#Command to clone
git clone https://github.com/hrutavmodha/text-utility.git
cd .\text-utility
#Command to install the project dependencies in frontend and backend folders seperately
cd .\frontend
npm install
cd ..
cd .\backend
npm install
cd ..
npm install concurrently nodemon
"scripts": {
"client": "cd .\frontend && npm run start"
"server": "node .\backend\server.js"
"fast": "concurrently \"npm run client\" \"npm run server\""
}
# Ensure concurrently is properly installed and is added in package.json to handle frontend and backend concurrently before running the following command
npm run fast
This will run both the frontend and backend concurrently using concurrently
Created by Hrutav Modha
GitHub: Hrutav Modha