Nullboard
Changelog
- 2025-11-22: Init
Not actually a project management board, but a dead simple TODO list.
Usage
Simply get started at https://nullboard.io/preview. Data is stored locally on the browser's LocalStorage.
It's relatively intuitive and elegantly designed.
Installation
The source is found in GitHub. It's rather clean because the entire source in packed in nullboard.html, and assets are locally stored (jQuery javascript, fonts, images...).
There are several upgrades by others:
- 4jag: Using webserver to store and retrieve boards.
- gf-mse/nullboard: On top of store/retrieve, has merging functionalities.
- luismedel/nbagent: Remote backup agent for Unix, written in Python.
If using the remote backup method with nbagent, one would probably need to host it with a webserver to avoid CORS-related issues (two main considerations: accessing a more private localhost or internal network scope, and backing with HTTPS from HTTPS context).
If using the fork by @4jag, make the following change (to fix the //save_json.php URI) and ensure the boards/ directory is writable by the webserver:
3486c3486 < url: location.origin+"/"+location.pathname.split('/')[1]+"/save_json.php", --- > url: location.origin+"/"+location.pathname.split('/')[1]+"save_json.php",
