how to include node_modules when creating a standalone EXE ( to run a Node.js application) with battoexeconverter

I am working on this question

and the only answer that worked for me is the one by alexjamesbrown (scroll down).

I could create an exe with battoexeconverter with a test node.js project.

But my real project uses several node_modules. How can I include these modules?

( I couldn't find an option to include directories. I just found the option to include files. There are about 500 files in the required node modules and I don't want to manually include them one by one.)

You could zip/rar the folder (node_modules.zip) and use a command-line utility to unzip it at runtime (BATTOEXE stores your files in the %TEMP% directory an deletes them when the app has been quit/stopped/ended).