-
Notifications
You must be signed in to change notification settings - Fork 781
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V2 Router support #902
Comments
If you have very loose requirements you could have a look at hyperstatic, but keep in mind it's still pretty early in it's development. |
Thanks @loteoo! hyperstatic seem like a very cool project! How much faster is it compared to React or Vue? |
Hyperstatic is just tools around hyperapp, so it's like hyperapp in terms of performance. |
@johnhorsema Hyperapp is faster than Vue and React. |
hyperstatic looks interesting, will look at the code splitting especially ;) i have spent quite some time thinking about this stuff and done some testing whilst building the babel tasks to bundle a generated hyperapp app. @magic is the result and a quite comprehensive (~40 npm packages now, each with docs generated by @magic.) ecosystem for smallish pages (less than ~50 pages total). what i learned: the user will not notice the load of some (smallish) javascript if the html is static. even if the user notices the load of initial js, if the user clicks a link before javascript routing can take over, one phone http request for a js file can take 300ms just negotiating, before download even starts. as an example, the @magic core docs: btw, this inspired: magic/core#95, which will solve big library imports in @magic sometime in the near future. |
I finally have some good news to share with you all. We're working on @hyperapp/navigation, which will be Hyperapp's official navigation solution. I haven't published it to npm yet, but we've already fixed a few bugs (#1013, #1014)~! 💯 I'll publish it soon after we've fleshed out a few other remaining details (#1015). In the meantime, you can check out the code in Closing now as this is our answer to the routing problem with Hyperapp. 👋 |
will you please push the navigation package? |
After googling for the past 3 hours, I do not see a plug-and-play solution to implement routing in Hyperapp with history.
I tried to use Universal Router but no example exist for Universal Router + Hyperapp...
The text was updated successfully, but these errors were encountered: