Build desktop apps with
Nim and web tech
Jazzy Desktop is a next-generation framework for building incredibly fast, cross-platform modern desktop applications.
jazzy-cli
❯
nimble install jazzy_desktop
❯
jazzyd new my-app && cd my-app
❯
jazzyd dev
Bring Your Own Framework
<script>
import { jazzy } from './jazzy'
let msg = ""
const callBackend = async () => {
msg = await jazzy.hello("Nim!")
}
</script>
<button on:click={callBackend}>Say Hello</button>
<p>{msg}</p>