A full-stack file explorer built using Node.js, Express, and vanilla HTML/CSS/JS.
- Reads and displays local files and folders dynamically
- Clean UI with form and file list
- Express server using the built-in
fs
module - Organized folder structure for scale and improvements
- Node.js
- Express
- HTML5
- CSS3
- JavaScript (vanilla)
- File System (fs)
git clone https://github.com/luckaty/File-Explorer.git cd File-Explorer 2. Install Express npm install express
-
Run the App node app.js
-
Open in Browser Go to: http://localhost:3000
📁 Folder Structure
├── app.js ├── form.html ├── static/ │ ├── Projects/ │ ├── Purchased Books/ │ ├── images/ │ ├── media/ │ ├── ... ├── file.txt ├── readme.md
📜 License MIT — Free to use, modify, and share.
About This project provides a basic file explorer that allows you to browse directories and files on your server. It's designed for simplicity and clarity, making it ideal for learning purposes or lightweight internal tools.