I'm creating an app in node.js using express. My app needs to allow users to upload pdf files. I got the upload working with formidable but I was reading the documentation it states the following:
This is a low level package, and if you're using a high level framework such as Express, chances are it's already included in it
I tried reading the discussion that the documentation referred to, but being new to node.js and express, I don't quite understand.
Doing a bit of research I found that you can use multer with express, but after messing around with it (and being very new to node) I couldn't get it to work how I got my app to work with formidable.
Is there any issue with using formidable with express? The documentation seemed to think there would be easier ways.