x64dbg
x64dbg copied to clipboard
Example using the build config
I am attempting to run some of the configurations from #446 to achieve a signed binary on macos. However I am lacking a basic example of how to use/run these build configs.
I would love to see a concrete build config-example for the express-app, including how to run said configuration.
I guess the config would look something like this:
const { compile } = require('nexe')
compile({
input: './index.js',
build: false,
patches: []
}).then(() => {
console.log('success')
})
But I don't know where to put said script, or how to run it.
@calebboyd Following your comment here regarding signing, do you maybe have a more current build config example for v3.3.7 or v4, that will surely pass strict validation when signing?