Hi
I have obtained the local export module
The current solutions provided are for running Node.js applications or deploying Docker images,
May I ask if there are any other ways to use it
Can it be integrated into my Vue project for use?
Looking forward to your reply
Hello,
It should be possible to use the export module that way, but it wonβt work out of the box. You will need to modify the source code a bit. As the export module expects the incoming connections, you will need to simultaneously run it with your project.
Probably, the easiest way would be to extract the contents of the zip file into the export_module folder in the root folder of your application. Then you can modify your package.json file to run it like this:
"scripts": {
"start": "concurrently \"npm run index.js\" \"npm run export_module/index.js\"",
1 Like