A basic CRUD (Create, Read, Update, Delete) website implementation using HTML, CSS, and JavaScript with local file storage.
- Create new items
- Read existing items
- Update items
- Delete items
- Data persistence using local JSON file
-
Install a local server (choose one):
- Python:
python -m http.server 8000
- Node.js:
npm install -g http-server
thenhttp-server
- Python:
-
Open your browser and navigate to:
- Python:
http://localhost:8000
- Node.js:
http://localhost:8080
- Python:
index.html
: Main HTML filecss/style.css
: Stylingjs/script.js
: JavaScript functionalitydata/items.json
: Local data storage