node-gtk
v4.1.1
Published
GNOME Gtk+ bindings for NodeJS
Readme
node-gtk lets you build native GTK apps on linux, macOS and windows
with full ESM, TypeScript and CSS hot-reload support. Prebuilt binaries
are available for Node.js versions 22, 24 and 26.
Usage
The create tool generates a complete, ready-to-run GTK/Adwaita project, so you can start building immediately after installing GTK4:
npx node-gtk create <your-app>Also see our hello world, web browser or system monitor examples.
Installing
There are two steps:
- Install
node-gtkitself (done by the create tool) - Install the native libraries you use (see examples per platform below)
Linux
# archlinux
pacman -S gtk4 libadwaita
# fedora
dnf install gtk4 libadwaita
# ubuntu
# Already installed :)macOS
brew install gtk4 libadwaita adwaita-icon-themeWindows
# Already installed :)[!NOTE] Windows doesn't have the dependencies we need in a package manager, therefore
node-gtkships prebuilt versions of GTK 4 / Adwaita, sonpm install node-gtkis all you need if your dependency is in our list of prebuilt libraries.
build from source
Building from source, or contributing? See Building from source.
Documentation
Other notes
node-gtk is a gobject-introspection library
for nodejs. It makes it possible to use any introspected C library, such as GTK,
usable. It is similar in essence to GJS
or PyGObject.
