choo
choo copied to clipboard
:steam_locomotive::train: - sturdy 4kb frontend framework
### Expected behavior The return type should be `something | undefined` where `something` is I guess a `Choo` instance? Or something like that. ### Actual behavior It is `void`.
### Expected behavior I've written some routes that are not behaving as expected. I initially started off with the `create-choo-app` scaffolding; however, that required turned out to only be a...
### Expected behavior from my package.json "start": "http-server -o -c-1 -p 8080 --proxy http://localhost:8080/ ", This indeed loads up the app properly at `http://127.0.0.1:8080/` However ```js function joinView(state, emit) {...
Where in the source code does choo handle the return value of route handler functions (the hyperx html)? I see where where the router sets the handler, but I don't...
Hi there 👋 I'm using Choo for a large app and I'm currently exploring how I can put custom elements to use. I have some nicely working hacks that I've...
I am trying to mount a choo application in an "application shell" that is provided by a static site generator. I would expect the routing behavior to be limited to...
Hi, Really liking Choo so far! One thing I was missing was the ability to define an async route (I'm working on a game and wanted to preload assets). I...
This is more of a help wanted issue. The problem that I am having is that I am attempting to put a choo.js app that is not on the root...
Rendering in Choo is a completely synchronous process, thought this makes things way simpler there are a few downsides from 2 perspectives: - **CPU** - Rendering complex components might block...
Porting https://github.com/goto-bus-stop/choo-lazy-route to be a first-class citizen in Choo. Should allow loading routes async directly. Right now the API is prefixed with experimental, as it probably requires some discussion on...