A simple, community-maintained open-source task tracker. Add tasks, check them off, never lose them — everything is stored in your browser.
Status: Active development. We accept bounties via CodeBounty on tagged issues.
- Single-page, zero-build static web app
- Tasks persist in
localStorage— no account, no server, no tracking - Keyboard-friendly (more shortcuts coming, see #5)
- Light & dark themes (dark coming, see #1)
- MIT licensed
git clone https://github.com/CodeBountyOrg/taskforge-demo.git
cd taskforge-demo
python3 -m http.server 8000 # or any static file server
open http://localhost:8000We welcome contributions! See CONTRIBUTING.md — TL;DR:
- Pick an open issue with the
💰 Bounty Availablelabel. - Apply on the bounty's CodeBounty page (linked in the issue).
- Once accepted, fork → branch → PR. Reference the issue number in the PR body (
Closes #N). - After merge, your payout is released via Stripe.
Maintainers approve bounties before they open and review all PRs before merge.
- HTML5, CSS3 (custom properties + flexbox)
- Vanilla JavaScript (ES2020+); no framework, no build step
localStoragefor persistence- ESLint + Prettier for code style
MIT — see LICENSE.