A simple visual editor for creating and managing black and white 4x4 grids. Built with React, Hono, and Val Town.
This app is broken up into three folders, corresponding to where the code in those folders run:
backend/ - runs on Val Town serverless infrastructure in Denofrontend/ - runs in the user's browsershared/ - runs in both the frontend and backendThe entrypoint of this app is backend/index.ts, which is the Hono HTTP server, which serves the HTML, CSS, and JS, which run client-side.
Uses Val Town's blob storage to persist saved grids. The storage key savedGrids contains an array of all saved grid objects.
You can click into each of those folders to view their respective READMEs.