Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"deno.enable": true
}
"deno.enable": true
}
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@

<img src=".github/screenshot.png" style="display: block;margin: 0 auto;">

> **Note**
> This library provides [Deno](https://deno.com/) bindings to [libadwaita](https://gnome.pages.gitlab.gnome.org/libadwaita/) and [GTK4](https://www.gtk.org/docs/) using Deno's [Foreign Function Interface (FFI)](https://docs.deno.com/runtime/fundamentals/ffi/). It enables building native GNOME-style UIs in TypeScript.
> **Note** This library provides [Deno](https://deno.com/) bindings to
> [libadwaita](https://gnome.pages.gitlab.gnome.org/libadwaita/) and
> [GTK4](https://www.gtk.org/docs/) using Deno's
> [Foreign Function Interface (FFI)](https://docs.deno.com/runtime/fundamentals/ffi/).
> It enables building native GNOME-style UIs in TypeScript.

## About

- Uses FFI to call native libraries from TypeScript, allowing most UI work to be handled by libadwaita/GTK4.
- Business logic and application code remain in TypeScript, while rendering and system integration are managed natively.
- Suitable for developers who want to create desktop applications with a GNOME look and feel, without writing C or Rust.
- Uses FFI to call native libraries from TypeScript, allowing most UI work to be
handled by libadwaita/GTK4.
- Business logic and application code remain in TypeScript, while rendering and
system integration are managed natively.
- Suitable for developers who want to create desktop applications with a GNOME
look and feel, without writing C or Rust.

### References

Expand Down
Loading