📝 Task-notes-node – Create, View, and Rename Files Easily
A simple and colorful web application to create, view, and rename text-based tasks or journal entries using Node.js, Express, and EJS. Users can write content, display saved files, and update file names in a visually pleasing interface built with Tailwind CSS.
- 🔠 Create new text files with a title and detailed content
- 📄 View the contents of individual
.txtfiles dynamically - 📝 Rename existing files easily using an edit form
- 🎨 Modern UI with vibrant Tailwind CSS styling
- 📁 File-based system powered by Node.js
fsmodule
- Backend: Node.js, Express.js
- Frontend: EJS Templates + Tailwind CSS
- File Handling: Node.js
fsmodule - Templating Engine: EJS
- Clone the repository
git clone https://github.com/Tanu9569/file-manager-app.git cd file-manager-app
bash Copy Edit node app.js Open in your browser
arduino Copy Edit http://localhost:3000 📁 Project Structure pgsql Copy Edit file-manager-app/ ├── views/ │ ├── index.ejs # Home page (task list + create form) │ ├── edit.ejs # Rename file form │ ├── show.ejs # View individual file ├── public/ # (Optional for custom CSS/images) ├── files/ # Stores all created text files ├── app.js # Main Express server ├── package.json └── README.md

