How to port a Javascript web server to an executable in Windows?

0

I am new to Node.js, and I have developed a server using express to send files between computers on the same network, but I can only start the server on the computer that will receive the file if it has the Node installed. I would like to know if there is any way to start the server without the need to have the node installed, for Windows platform.

    
asked by anonymous 23.11.2016 / 21:17

1 answer

1

To create desktop applications on a node, there are two commonly used tools: link and link

Electron for example was used to create the atom editor, slack, visual studio code ...

The only problem in your case is that you should have started to develop with one of these two from the beginning. Porting your code will give you more work.

    
05.12.2016 / 06:44