I am using Ionic v3 and and for backend used Nodejs.
var storage = multer.diskStorage({ destination: function(req, file, callback) { callback(null, './uploads') }, filename: function(req, file, callback) { console.log(file) callback(null, file.fieldname + '-' + Date.now() + path.extname(file.originalname)) } }); var upload = multer({storage: storage});
To call this method we require req ,res through API call like below,
upload(req, res, function(err) { res.end('File is uploaded') }); My question that is it possible to call this upload function without API call(req,res) ? If yes how can we do ?
What i want to do is, I am developing chat application using ionic2 and nodejs where i can share image. That image should be upload to server side. How can I do for socket programming ?