Reputation: 39
the nodejs script works when I do node main.js but when I compile it into an executable with pkg it gives me this error :
pkg/prelude/bootstrap.js:1876 throw error; ^
Error: Cannot find module './node' Require stack:
Upvotes: 3
Views: 1719
Reputation: 509
Add not found module to package.json
like this
"pkg": {
"assets": [
"./node"
]
}
Upvotes: 0