New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

wndkit

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wndkit

Native Windows desktop apps in Node.js

latest
npmnpm
Version
0.1.0
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

WndKit

Native Windows desktop apps in Node.js. No bloat. Just Win32 APIs.

const { Window, Button, Label, Application } = require("wndkit");

const win = new Window("Hello", 400, 200);
const label = new Label(win, "Click the button", 50, 50, 300, 30);
const button = new Button(win, "Click Me", 150, 100, 100, 30);

button.on("click", () => (label.text = "Clicked!"));

win.show();
Application.run();

Requirements:

  • Windows 10/11
  • Node.js 20+

Works out of the box on x64. Other architectures compile automatically on install.

Window

const win = new Window(title, width, height);
win.title = "New Title"; // read/write
win.size = { width, height }; // read/write
win.position = { x, y }; // read/write
win.show();
win.hide();
win.on("close", callback);

Button

const btn = new Button(parent, text, x, y, width, height);
btn.text = "New Text"; // read/write
btn.on("click", callback);

Label

const lbl = new Label(parent, text, x, y, width, height);
lbl.text = "New Text"; // read/write

TextBox

const txt = new TextBox(parent, text, x, y, width, height);
txt.text = "Hello"; // read/write
txt.multiline = true; // read/write

CheckBox

const chk = new CheckBox(parent, text, x, y, width, height);
chk.checked = true; // read/write
chk.on("click", callback);

Application

Application.run(); // Start message loop (required)

License

MIT

Keywords

windows

FAQs

Package last updated on 05 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts