Node.js – Axios – Upload file to another server
I need to upload a file from a Node.js server to another server using axios. I'm using multer to handle the data received from the client. Here's my code: const multer = require('multer'); const router = require('express').Router(); const FormData =…