lune
Version, currently 0.2.246 versions
- 0.19.1latestAug 5, 2026
- 0.19.0not indexedAug 5, 2026
- 0.18.0not indexedAug 5, 2026
- 0.17.0not indexedAug 5, 2026
- 0.16.1not indexedAug 5, 2026
- 0.16.0not indexedAug 5, 2026
- 0.15.0not indexedAug 5, 2026
- 0.14.1not indexedAug 5, 2026
- 0.14.0not indexedAug 5, 2026
- 0.13.0not indexedAug 5, 2026
- 0.12.0not indexedAug 5, 2026
- 0.11.2not indexedAug 5, 2026
- 0.11.1not indexedAug 5, 2026
- 0.11.0not indexedAug 5, 2026
- 0.10.0not indexedAug 5, 2026
- 0.9.0not indexedAug 5, 2026
- 0.8.0not indexedAug 5, 2026
- 0.7.1not indexedAug 5, 2026
- 0.7.0not indexedAug 5, 2026
- 0.6.2not indexedAug 5, 2026
- 0.6.1not indexedAug 5, 2026
- 0.6.0not indexedAug 5, 2026
- 0.5.1not indexedAug 5, 2026
- 0.5.0not indexedAug 5, 2026
- 0.4.5not indexedAug 5, 2026
- 0.4.4not indexedAug 5, 2026
- 0.4.3not indexedAug 5, 2026
- 0.4.2not indexedAug 5, 2026
- 0.4.1not indexedAug 5, 2026
- 0.4.0not indexedAug 5, 2026
- 0.3.6not indexedAug 5, 2026
- 0.3.5not indexedAug 5, 2026
- 0.3.4not indexedAug 5, 2026
- 0.3.3not indexedAug 5, 2026
- 0.3.2not indexedAug 5, 2026
- 0.3.1not indexedAug 5, 2026
- 0.3.0not indexedAug 5, 2026
- 0.2.4not indexedAug 5, 2026
- 0.2.3not indexedAug 5, 2026
- 0.2.2not indexedAug 5, 2026
- 0.2.1not indexedAug 5, 2026
- 0.2.0not indexedAug 5, 2026
- 0.1.3not indexedAug 5, 2026
- 0.1.2not indexedAug 5, 2026
- 0.1.1not indexedAug 5, 2026
- 0.1.0not indexedAug 5, 2026
github.com/AristoRap/lune
Build native desktop apps with Crystal and a web frontend.
30 stars
0 dependents
License: MIT
Nothing has been indexed for 0.2.2 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
lune:
github: AristoRap/lune
version: ~> 0.2.2Then run:
shards installshard.yml
No shard.yml has been indexed for 0.2.2. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
[](https://github.com/AristoRap/lune/actions/workflows/specs.yml)
[](https://github.com/AristoRap/lune/tags)
[](LICENSE)
[](https://crystal-lang.org)
<div style="width: 100%; background: #0B0D14; border-radius: 12px;">
<p align="center">
<img src="assets/lune-logo.svg" />
</p>
</div>
# Lune
Build native desktop apps with Crystal and a web frontend.
Lune wraps a native WebView and lets you call Crystal code from JavaScript over a typed bridge — no servers, no IPC boilerplate. Think Wails or Tauri, but for Crystal.
> **v0.x notice:** Both the library and CLI APIs may change before 1.0. If you use this now, expect occasional breaking changes.
Lune requires Crystal 1.21 or newer. Execution contexts are enabled by default in 1.21, so Lune apps no longer need experimental compiler flags.
## Documentation
Full docs live at the project `website` folder
- visit [Lune Docs](https://aristorap.github.io/lune/), or
- run `npm run docs:dev` locally from the repo (also, `make web`)
## Quick start
```sh
lune init my_app # vanilla JS + Vite
lune init my_app --template vue # Vue 3 + Vite
cd my_app
lune dev
```
Pre-built CLI binaries are on the [releases page](https://github.com/AristoRap/lune/releases). Or build from source: `make setup && make deploy`.
The `demo/` directory in this repo is a Vue 3 showcase that exercises every Lune plugin. Run it with `cd demo && lune dev`. See [Plugins](https://aristorap.github.io/lune/plugins/) for the full list of what's available.
## Platform support
| Platform | Dev | Build | Notes |
| -------- | --- | ----- | ---------------------------------------------------------------------------------------------------------- |
| macOS | ✅ | ✅ | Native AppKit |
| Linux | ✅ | ✅ | GTK + WebKit2GTK |
| Windows | 🟡 | 🟡 | Win32 + WebView2 on Crystal 1.21+. Several plugins still gapped — see [WINDOWS_SETUP.md](WINDOWS_SETUP.md) |
### Windows
Lune runs on Windows with the standard Crystal 1.21+ MSVC toolchain; the upstream `Process` fix in [crystal#16933](https://github.com/crystal-lang/crystal/pull/16933) removes the former stdlib patch. The demo runs end-to-end via `lune dev --debug`. For per-plugin Windows status (verified, partial, not implemented), see the **Platform notes** section on each [plugin page](website/plugins/). [ROADMAP.md](ROADMAP.md) tracks the path to full parity.
## Development
```sh
make setup # shards install + npm install
make test # crystal spec
make deploy # build release binary → /usr/local/bin/lune
```
On Windows, use `./make.ps1 <target>` from PowerShell — same targets as the Makefile, plus MSVC env auto-bootstrap (`./make.ps1 help` lists them). See [WINDOWS_SETUP.md](WINDOWS_SETUP.md) for the one-time native-deps setup (sqlite3 + webview).
## Contributing
1. Fork it (<https://github.com/aristorap/lune/fork>)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Add specs for your changes (`crystal spec`)
4. Commit and push and open a Pull Request
## Contributors
- [Aristotelis Rapai](https://github.com/aristorap) — creator and maintainer
## License
MIT
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.2.2- Tagged
- Aug 5, 2026
- Commit
bf9a3734ee8c- Indexed
- not yet
Dependents
No indexed shard depends on this one yet.
Repository
github.com/AristoRap/lune
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 12, 2026
- Synced
- Aug 12, 2026
- Versions
- 46