Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to create desktop applications with node.js? [duplicate]

I've created an application using node.js, and I'm interested to know if it's possible to pack the client side (js, html ,css) and the server side into a standalone application (that doesn't required browser).

like image 852
itamarb Avatar asked Jan 09 '12 19:01

itamarb


1 Answers

https://github.com/rogerwang/node-webkit is a project with the goal of running an instance of the webkit browser engine in the same process as nodejs. It allows you to directly use nodes API in the browser. It currently only works on linux works on Windows, Mac and Linux now.

like image 113
thejh Avatar answered Oct 11 '22 09:10

thejh