Reputation: 43
I have a MEAN stack application running on my local laptop. I want to make an executable out of it which I can give to my other teammates so that they can install it on their laptop. My teammates will have mongoDB installed since my app is using mongodb. How can I create such an app. It would be great if while installing the app, it also installs node, express npm on one's laptop. Please help! Thanks!
Upvotes: 1
Views: 452
Reputation: 111346
One way to do it would be to use Electron. You don't need to use BrowserWindow if you don't need a GUI but Electron gives you nice tools to package and install your app on Mac, Windows and Linux.
Using Electron you could even make the frontend side of your app appear inside of a native window so that no web browser would be needed to access your application.
See:
Other options:
Upvotes: 2