Loading repository data…
Loading repository data…
Baki-bytes / repository
"ToDo App" — A minimal client-side to-do list app built with vanilla JavaScript, HTML, and CSS. It lets you add, mark complete, and remove tasks. No backend required — tasks are stored locally in the browser (localStorage). This project is intended as a small practice app to learn DOM manipulation and basic front-end storage techniques.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This is a minimal ToDo app JavaScript file that depends only on the DOM (no external libraries).
Files
main.js — behavior for adding and deleting items. Include it in a simple HTML page.Quick start
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>ToDo App</title>
</head>
<body>
<input placeholder="Add task..." />
<button>Add</button>
<ul></ul>
<script src="main.js"></script>
</body>
</html>
Notes
main.js and your HTML page together when publishing to GitHub.License