打包 node 应用程序为单一文件可执行程序

解决方案

  • crcn/nexe - create a single executable out of your node.js apps。支持多个平台,似乎靠谱。
  • areve/node2exe - 只支持 Windows,用 copy /b 合并多个文件。
  • appjs/appjs - 已过期,被 node-webkit 替代。
  • rogerwang/node-webkit - Call all Node.js modules directly from DOM and enable a new way of writing applications with all Web technologies. 带图形界面的不二选择。
  • creationix/topcube - Gives node developers a way to have a desktop GUI to their node servers using HTML5 + CSS3 as the GUI platform.

讨论