NodeJS: Error: spawn EINVAL in window for node version 20.20 and 18.20
Encounter this issue when running autorest (that uses nodejs).
I am using node version: v18.20.2
After i revert to use node v18.12.0, then i was able to get my app to run without this error. Since i am working with Azure devops yaml, i was able to use the following to resolve my issue.
- task: NodeTool@0
inputs:
versionSource: 'spec'
versionSpec: '18.18.0'
Comments