Home > Back-end >  How to upload an image to server directory?
How to upload an image to server directory?

Time:03-29

I'm not sure if this is a bad idea, if it is please let me know, but I want a choose file input to upload to the server's directory. If that didn't make sense, let's say I have a folder for my website and in that I have a public folder and INSTEAD of using databases, upload the image we just submitted to the public folder. Oh and also, this is using node.js and html, no PHP please :)

I've just been doing research on image databases the past few days and couldn't find anything, cough, PHP. I'm trying my best not to pay for stuff as I'm broke.

Thanks, Alek

CodePudding user response:

I think multer will help you. You can set the directory for saving your files.

  • Related