+ Public preview
+
+
+ A new way to bring native Windows APIs to JavaScript
+Introducing dynamic API projections for Node.js
+Notifications, Phi Silica, clipboard, and more, straight from JavaScript. No native addon, no node-gyp.
+ Electron
+ Node.js
+ Windows App SDK
+ On-device AI
+
+
+
+
+
+
+ // On-device AI, from JS +const { LanguageModel, + TextSummarizer } + = require('./.winapp/bindings'); + +const model = await LanguageModel + .createAsync(); + +const { text } = await TextSummarizer + .createInstance(model) + .summarizeParagraphAsync(input);+
+
+