// Делаю стандартными средствами Node.js, так как нагляднее
const http = require('http');
const postData = {
'encodedText': buffer
};
const req = http.request();
req.write(postData);
req.end();
TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be one of type string or Buffer. Received type object