kvelte icon indicating copy to clipboard operation
kvelte copied to clipboard

The fastest way to build UI with Svelte for Kotlin users

Results 12 kvelte issues
Sort by recently updated
recently updated
newest added

https://github.com/baseballyama/kvelte/blob/main/README.md https://github.com/baseballyama/kvelte/blob/main/README-ja.md

Bumps [svelte](https://github.com/sveltejs/svelte) from 3.48.0 to 3.49.0. Changelog Sourced from svelte's changelog. 3.49.0 Improve performance of string escaping during SSR (#5701) Add ComponentType and ComponentProps convenience types (#6770) Add support for...

dependencies

Now there is no interface for svelte preprocess. But obviously, some users need to use markdown or configure something. So I need to add an interface for it.

Now base HTML is provided by Kvelte. (USe can not defined base HTML) But sometimes I want to add a script tag transparently at `` part.

I want to write a document on https://kvelte.baseballyama.tokyo/. Then I want to add a search feature. At that time I think I should use GitHub API. https://docs.github.com/en/rest/search But I'm not...

This is almost the same feature as the Svelte kit's `prerender`. All pages' SSR'd HTML should cache if a params map is empty. Then response will be faster than now.

- [ ] all assets should be stored in the assets folder. Otherwise, it will be 404. - [ ] `window` can not use in SSR. if you want to...

Creating SSR'd HTML depends on Graal.js But some use-cases maybe get better performance if it simply distributes JavaScript rather than SSR'd HTML. (especially if there are many concurrent accesses).

One of the big issues about template engines is the lack of type safety. in dev mode, monitor Svelte file changes and automatically generate Kotlin interfaces in real-time. in prod...

I don't want to force users to use GraalVM, but performance is better if use GraalVM.