[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-1181":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":19,"rankGlobal":10,"rankLanguage":10,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":23,"hasPages":21,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":30,"readmeContent":31,"aiSummary":32,"trendingCount":16,"starSnapshotCount":16,"syncStatus":33,"lastSyncTime":34,"discoverSource":35},1181,"nw.js","nwjs\u002Fnw.js","nwjs","Call all Node.js modules directly from DOM\u002FWebWorker and enable a new way of writing applications with all Web technologies.","https:\u002F\u002Fnwjs.io",null,"JavaScript",41184,3854,1543,887,0,6,13,74.3,"MIT License",false,"main",true,[25,26,27,28,7,29],"desktop","javascript","node-webkit","nodejs","web-application-framework","2026-06-12 04:00:08","## node-webkit is renamed NW.js\n\n[![Gitter](https:\u002F\u002Fbadges.gitter.im\u002FJoin%20Chat.svg)](https:\u002F\u002Fgitter.im\u002Fnwjs\u002Fnw.js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)  \nOfficial site: https:\u002F\u002Fnwjs.io  \n## Introduction\n\nNW.js is an app runtime based on `Chromium` and `node.js`. You can \nwrite native apps in HTML and JavaScript with NW.js. It also lets you\ncall Node.js modules directly from the DOM and enables a new way of writing\nnative applications with all Web technologies.\n\nIt was created in the Intel Open Source Technology Center.\n\n[Building a Cross-platform Desktop App with NW.js](https:\u002F\u002Fwww.sitepoint.com\u002Fcross-platform-desktop-app-nw-js\u002F)     \n[Creating Desktop Applications With node-webkit](https:\u002F\u002Fstrongloop.com\u002Fstrongblog\u002Fcreating-desktop-applications-with-node-webkit\u002F)     \n[WebApp to DesktopApp with node-webkit (slides)](http:\u002F\u002Foldgeeksguide.github.io\u002Fpresentations\u002Fhtml5devconf2013\u002Fwtod.html)  \n[Essay on the history and internals of the project](http:\u002F\u002Fyedingding.com\u002F2014\u002F08\u002F01\u002Fnode-webkit-intro-en.html)\n\n## Features\n\n* Apps written in modern HTML5, CSS3, JS and WebGL.\n* Complete support for [Node.js APIs](https:\u002F\u002Fnodejs.org\u002Fapi\u002F) and all its [third party modules](https:\u002F\u002Fwww.npmjs.com\u002F).\n* Good performance: Node and WebKit run in the same thread: Function calls are made straightforward; objects are in the same heap and can just reference each other.\n* Easy to package and distribute apps.\n* Available on Linux, Mac OS X and Windows.\n\n## Downloads\n* **v0.111.1:** (Apr 30th, 2026, based off of Node.js v25.9.0, Chromium 148) : [release notes](https:\u002F\u002Fnwjs.io\u002Fblog\u002Fv0.111.1\u002F)\n **NOTE** You might want the **SDK build**. Please read the release notes.\n * Linux: [64bit](https:\u002F\u002Fdl.nwjs.io\u002Fv0.111.1\u002Fnwjs-v0.111.1-linux-x64.tar.gz) \u002F [arm64](https:\u002F\u002Fdl.nwjs.io\u002Fv0.111.1\u002Fnwjs-v0.111.1-linux-arm64.tar.gz)\n * Windows: [32bit](https:\u002F\u002Fdl.nwjs.io\u002Fv0.111.1\u002Fnwjs-v0.111.1-win-ia32.zip) \u002F [64bit](https:\u002F\u002Fdl.nwjs.io\u002Fv0.111.1\u002Fnwjs-v0.111.1-win-x64.zip)\n * Mac 10.10+: [64bit](https:\u002F\u002Fdl.nwjs.io\u002Fv0.111.1\u002Fnwjs-v0.111.1-osx-arm64.zip)\n * Use [Legacy build](http:\u002F\u002Fnwjs.io\u002Fdownloads\u002F) for Win XP and early OSX.\n\n* **latest nightly build from git tip**: https:\u002F\u002Fdl.nwjs.io\u002Flive-build\u002F\n\n* [Previous versions](https:\u002F\u002Fdl.nwjs.io); See [the mapping file](https:\u002F\u002Fnwjs.io\u002Fversions.json) for the version info in previous releases.\n\n### Demos and real apps\nYou may also be interested in [our demos repository](https:\u002F\u002Fgithub.com\u002Fzcbenz\u002Fnw-sample-apps) and the [List of apps and companies using nw.js](https:\u002F\u002Fgithub.com\u002Fnwjs\u002Fnw.js\u002Fwiki\u002FList-of-apps-and-companies-using-nw.js).\n\n## Quick Start\n\nCreate `index.html`:\n\n```html\n\u003C!DOCTYPE html>\n\u003Chtml>\n  \u003Chead>\n    \u003Ctitle>Hello World!\u003C\u002Ftitle>\n  \u003C\u002Fhead>\n  \u003Cbody>\n    \u003Ch1>Hello World!\u003C\u002Fh1>\n    We are using node.js \u003Cscript>document.write(process.version)\u003C\u002Fscript>.\n  \u003C\u002Fbody>\n\u003C\u002Fhtml>\n```\n\nCreate `package.json`:\n\n```json\n{\n  \"name\": \"nw-demo\",\n  \"version\": \"0.0.1\",\n  \"main\": \"index.html\"\n}\n```\n\nRun:  \n```bash\n$ \u002Fpath\u002Fto\u002Fnw .  (suppose the current directory contains 'package.json')\n```\n\nNote: on Windows, you can drag the folder containing `package.json` to `nw.exe` to open it.\n\nNote: on OSX, the executable binary is in a hidden directory within the .app file. To run node-webkit on OSX, type:  \n`\u002Fpath\u002Fto\u002Fnwjs.app\u002FContents\u002FMacOS\u002Fnwjs .` *(suppose the current directory contains 'package.json')*   \n\n## Documents\nOfficial documentation: http:\u002F\u002Fdocs.nwjs.io\u002F  \n\nFor more information on how to write\u002Fpackage\u002Frun apps, see:\n\n* [How to run apps](https:\u002F\u002Fgithub.com\u002Fnwjs\u002Fnw.js\u002Fwiki\u002FHow-to-run-apps)\n* [How to package and distribute your apps](https:\u002F\u002Fgithub.com\u002Fnwjs\u002Fnw.js\u002Fwiki\u002FHow-to-package-and-distribute-your-apps)\n* [How to use Node.js modules in node-webkit](https:\u002F\u002Fgithub.com\u002Fnwjs\u002Fnw.js\u002Fwiki\u002FUsing-Node-modules)\n\nAnd our [Wiki](https:\u002F\u002Fgithub.com\u002Fnwjs\u002Fnw.js\u002Fwiki) for much more.\n\n## Community\n\nWe use the [google group](https:\u002F\u002Fgroups.google.com\u002Fd\u002Fforum\u002Fnwjs-general) as\nour mailing list (use English only). Subscribe via [nwjs-general+subscribe@googlegroups.com](mailto:nwjs-general+subscribe@googlegroups.com).\n\n*NOTE*: Links to the old google group (e.g. `https:\u002F\u002Fgroups.google.com\u002Fforum\u002F#!msg\u002Fnode-webkit\u002FdoRWZ07LgWQ\u002F4fheV8FF8zsJ`) that are no longer working can be fixed by replacing `node-webkit` with `nwjs-general` (e.g `https:\u002F\u002Fgroups.google.com\u002Fforum\u002F#!msg\u002Fnwjs-general\u002FdoRWZ07LgWQ\u002F4fheV8FF8zsJ`).\n\nIssues are being tracked here on GitHub.\n\nThe source code for NW.js and the daily development spans multiple repositories in this organization. This repository is for issue tracking, landing page, and part of the source code.\n\n### Verifying Binaries\n\nStarting from 0.32.0 the stable and nightly download directories contain a SHASUMS256.txt\nfile that lists the SHA checksums for each file available for download, as well as the\nchecksums for the files inside the download package.\n\nThe SHASUMS256.txt can be downloaded using `curl`.\n\n```console\n$ curl -O https:\u002F\u002Fdl.nwjs.io\u002Fvx.y.z\u002FSHASUMS256.txt\n```\n\nTo check that a downloaded file matches the checksum, run\nit through `sha256sum` with a command such as:\n\n```console\n$ grep nwjs-vx.y.z.tar.gz SHASUMS256.txt | sha256sum -c -\n```\n\nThe stable releases (but not Nightlies) also have the GPG detached\nsignature of SHASUMS256.txt available as SHASUMS256.txt.asc. You can use `gpg`\nto verify that SHASUMS256.txt has not been tampered with.\n\nTo verify SHASUMS256.txt has not been altered, you will first need to import\nthe GPG key of NW.js maintainer to create releases.\nUse this command to import the key:\n\n```console\n$ gpg --keyserver pool.sks-keyservers.net --recv-keys 78680FA9E21BB40A\n```\n```\n(Key fingerprint is 1E8B EE8D 5B0C 4CBC D6D1  9E26 7868 0FA9 E21B B40A)\n```\n\nNext, download the SHASUMS256.txt.asc for the release:\n\n```console\n$ curl -O https:\u002F\u002Fdl.nwjs.io\u002Fvx.y.z\u002FSHASUMS256.txt.asc\n```\n\nAfter downloading the appropriate SHASUMS256.txt and SHASUMS256.txt.asc files,\nyou can then use `gpg --verify SHASUMS256.txt.asc SHASUMS256.txt` to verify\nthat the file has been signed by an authorized member of the NW.js team.\n\nOnce verified, use the SHASUMS256.txt file to get the checksum for\nthe binary verification command above.\n\n## License\n\n`NW.js`'s code in this repo uses the MIT license, see our `LICENSE` file. To redistribute the binary, see [How to package and distribute your apps](https:\u002F\u002Fgithub.com\u002Fnwjs\u002Fnw.js\u002Fwiki\u002FHow-to-package-and-distribute-your-apps)\n\n","NW.js 是一个基于 Chromium 和 Node.js 的应用程序运行时，允许开发者使用 HTML 和 JavaScript 编写原生应用。其核心功能包括支持现代 HTML5、CSS3、JS 和 WebGL 技术开发，并且能够直接从 DOM 中调用 Node.js 模块及其第三方库。NW.js 通过将 Node 和 WebKit 运行在同一线程上实现了良好的性能表现，同时也简化了对象间的引用。此外，它还提供了便捷的应用打包与分发工具。适用于需要跨平台（Linux、Mac OS X 和 Windows）快速构建桌面级 Web 应用的场景。",2,"2026-06-11 02:42:08","top_all"]