I am trying to make executable of my node app with https://github.com/zeit/pkg npm package. I tried but not able to understand the given document completely or I'm doing something wrong.
After installing with the command 'npm install -g pkg' I have put the entry point in package.json file like:
"bin": "app.js"
I'm running this cmnd:
pkg .
After this where I'll get the executable file that I can run. I tried running the file it creates with proj_name-win on windows but it's not working. Can anybody explain me the steps to make executable and what I'm doing wrong?