We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XMLHttpRequest throws an error 'Spawn ENAMETOOLONG' run with windows 10 while send a long string data.
var syncProc = spawn(process.argv[0], ["-e", execString]);
i think it cause by CMD arguments length limit in windows. i try to use like this
fs.writeFileSync(execFile, execString, "utf8"); var syncProc = spawn(process.argv[0], [execFile]);
is successfully run.
So could you support running with long string data in Windows?
The text was updated successfully, but these errors were encountered:
I have this same issue can we use something like "cross-spawn"
here for example: https://github.com/driverdan/node-XMLHttpRequest/blob/master/lib/XMLHttpRequest.js#L15
Sorry, something went wrong.
No branches or pull requests
XMLHttpRequest throws an error 'Spawn ENAMETOOLONG' run with windows 10 while send a long string data.
i think it cause by CMD arguments length limit in windows.
i try to use like this
is successfully run.
So could you support running with long string data in Windows?
The text was updated successfully, but these errors were encountered: