0
I am new to Node.js, and 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 Node installed. I wonder if there is any way to start the server without having Node installed, for Windows platform.
Running Node without having Node installed is like running windows without installing it. I’m not sure I quite understood the question... can you give a practical example or explain it better?
– Sergio
It would basically create an executable for windows, starting from this application. Intended for the end user
– Ericks Rodrigues
I think the problem was the choice of platform in the case. If the intention was to make a server executable, probably a more complete compiled language would be better than a Runtime JS. Not that it’s impossible, probably someone will do something like that (just like Electron uses a Node.js Embedded). However, it ends up leveling down technologically. But if it’s just for experience and learning, it’s cool.
– Bacco
Yes, the idea is just learning :)
– Ericks Rodrigues