I am currently working on an installer for app made in electron, during the installation process i need to make simple POST request to verify credentials. I found that there is this inetc
plugin that can do it. However since i am using electron builder which comes with nsis i dont really know how to install that plugin within this environment.
So this is where i found the nsis source (i think):
node_modules\app-builder-lib\templates
and then this is what i already tried:
- copy
Plugins
directory from inetc package to (screen above) nsis directory - copy all contents of inetc package to (screen above) nsis directory and run
build_msvc
file
at the end when i try to compile my app i always get error:
Plugin not found, cannot call inetc::post
How it is possible to install that plugin and use it?