I have a program written with node js
that I want to bundle and distribute as "stand-alone" executable program.
I want to run the program through cmd
only with the the executable file name (without using npm run start
or node file.js
). i.e. my_program arguments
.
What is the most recommended way to achieve this?
Thanks.