A simple web application that allows you to:
- Select a local directory
- Browse and view text files
- Edit and save changes back to the original files
- Directory selection using the File System Access API
- Real-time text file editing
- Save changes directly to the original files
- Simple and intuitive interface
- Modern browser with File System Access API support (Chrome, Edge, or Opera recommended)
- HTTPS connection or localhost
- User permission to access files
- Open the application in your browser
- Click "Pick Directory" to select a folder
- Click on any file in the list to open it
- Edit the file content in the text area
- Click "Save Changes" to save your edits
- Install a local web server (if you don't have one):
npm install -g http-server
- Start the server:
http-server -o
- The application will open in your default browser
This application uses the File System Access API which is currently supported in:
- Chrome 86+
- Edge 86+
- Opera 72+
- The application only has access to files and directories you explicitly select
- File access permissions are managed by the browser
- No file data is transmitted over the network
MIT License - See LICENSE file for details