
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
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:
Works out of the box on x64. Other architectures compile automatically on install.
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);
const btn = new Button(parent, text, x, y, width, height);
btn.text = "New Text"; // read/write
btn.on("click", callback);
const lbl = new Label(parent, text, x, y, width, height);
lbl.text = "New Text"; // read/write
const txt = new TextBox(parent, text, x, y, width, height);
txt.text = "Hello"; // read/write
txt.multiline = true; // read/write
const chk = new CheckBox(parent, text, x, y, width, height);
chk.checked = true; // read/write
chk.on("click", callback);
Application.run(); // Start message loop (required)
MIT
FAQs
Native Windows desktop apps in Node.js
The npm package wndkit receives a total of 0 weekly downloads. As such, wndkit popularity was classified as not popular.
We found that wndkit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.