dynamic web applications #38
-
How long to see the documentation and example for dynamic web applications? Any support for hummingbird? |
Beta Was this translation helpful? Give feedback.
Answered by
maclong9
May 19, 2025
Replies: 1 comment 2 replies
-
Thank you for checking out my library, Hummingbird is what I am working on for serverside applications, you can see a basic example that isn't quite complete (got busy at work during working on this) in the examples directory. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To further this comment it's pretty much possible to use with Hummingbird as is, the way I'd recommend doing so is taking the response generator from here, at some point I will implement a more WebUI standard one into the library, and just replacing the contents of the
html: html
parameter as seen ininput()
with a WebUI Page e.g.HomeView().document.render()
at the time of writing make sure your render the document and not just the component as otherwise you'll miss out on all of the metadata generation.It's also a good idea to create a
baseMetadata
with your site information as seen in the examples directory and then generate page document metadata using theMetadata(from: ViewConfigur…