discogs/minima
Simple pythonic tools for generating html.
Platform-specific configuration:
{
"mcpServers": {
"minima": {
"command": "npx",
"args": [
"-y",
"minima"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
minima: noSQL + noHTML + noJS =============================
Traditional web frameworks comprise of an ORM layer over a DB, a templating engine and some HTTP dispatcher and session management. In my view, the first two are relics of the past and we can (and should) do without them, and the third should be greatly improved. Luckily, modern minimalist frameworks like `flask` get us closer to that, but there's still way to go.
The Vision: Snakes all the Way Down! ------------------------------------
on the fly. JSON API calls everywhere, by default.
form of function application. A template takes parameters and generates HTML: it's a function!
function names (URLs) to concrete functions, extracts parameters, and generally alleviates your code from the mess that is HTTP. It's time to realize it and think about it the way it realy is.
level, that renders itself as HTML plus the required JavaScript.
by putting as much of it as possible into the framework. Semantic elements may generate their appropriate JavaScript when they render themselves to HTML, but the product should be pure.
choice (unless you need really complex queries): if you choose to work in a dynamic language, why would you work with a static DB schema?
Web programming involves too many unrelated technologies that were stac
Loading reviews...