A simple Node.js + Express application for handling file uploads using Multer. This project demonstrates how to upload files (images, PDFs, documents, etc.) to a server and serve them back dynamically.
- Upload single or multiple files
- Store files locally in
/uploads
folder - Easy integration with frontend forms
- Supports images, PDFs, and other file types
- Example API endpoint with
POST /upload
- Node.js
- Express.js
- Multer (for file uploads)
- JavaScript / REST API
Clone the repository:
git clone https://github.com/adsoftwareeng/upload-file-nodejs.git
cd upload-file-nodejs
npm install
npm start
POST /upload → Single or Multiple files (field name: file)
This project is licensed under the MIT License.