#1029·formidable

Question: How to use inside Google Cloud Run?

Author: boustanihaniCreated Jul 13, 2025Updated May 15, 2026
LabelsStatus: AcceptedType: DocumentationType: EnhancementType: Question

Question: How to use inside Google Cloud Run?

Is it possible to use Buffer.from(req.rawBody, "base64") instead of req inside Google Cloud Run =>

const form = new Formidable({
  uploadDir: os.tmpdir(),
  keepExtensions: true,
});
const [fields, files] = await form.parse(Buffer.from(req.rawBody, "base64"));

Source: node-formidable/formidable