EDIT: Edited it using Mikhail's suggestion. Got closer to the solution
Hi I am trying to upload a JSON file using nodejs but for some reason it says my file is undefined. A file appears in my Public folder that contains the contents of the uploaded file however. I was wondering if someone would be able to help me out. Thanks
Here is the HTML
<form method="post" enctype="multipart/form-data" action="/file-upload"> <input type="file" name="theFile" > <input type="submit" class = "submit"> </form> EDIT: Here is the server.js
app.post('/testtwilio',upload.single('theFile'),function(req, res, next) { console.log('FIRST TEST: ' + req.file); }); Here is the JSON file
[{"name":"FIRST LAST","date":"12/22/2016","number":"7523924324"}] Here is what is being logged
FIRST TEST: [object Object]
console.log( req);orconsole.log(req.files);for debugging purpose.