The "offset" argument must be of type number. Received type string
(node:19546) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated. Use os.tmpdir() instead. Listening on port 1127 TypeError [ERR_INVALID_ARG_TYPE]: The "offset" argument must be of type number. Received type string
I see the same error on the server side when posting dump file, have you figured it out ?
Thanks.
I see the same error on the server side when posting dump file, have you figured it out ?
Thanks.
add "os.tmpDir = os.tmpdir;" line in node_module/temp/lib/temp.js 's 6th line, like this: `var fs = require('fs'), os = require('os'), path = require('path'), cnst = require('constants');
os.tmpDir = os.tmpdir; /* HELPERS */`
but i got error below when click uploaded dump file in server, can anyone help me?
Error
at ChildProcess.
thank you~~