Node Express Multer is a file upload functionality implementation with the help of Multer library and Express server of Node.
Note: The current implementation demonstrate the excel file upload functionality.
You should have at least a basic understanding of fundamental programming concepts and some experience with introductory Javascript
. And the knowledge of Express
and Node JS
is an advantage.
Lastly, make sure you have the following installed.
- Latest version of Node.js
- Latest version of NPM (Node Package Manage)
- Latest version of git (This is optional. It requires, if you choose to clone the project)
-
Either you can clone or download repository from GitHub.
-
Clone with HTTPS (required git installed in your system)
git clone https://github.com/vishalnagda1/node-express-multer.git
-
Clone with SSH (required git installed in your system)
git clone [email protected]:vishalnagda1/node-express-multer.git
-
-
Navigate to project directory in the terminal or command prompt.
cd node-express-multer
-
Install project dependencies
npm install
-
Run the project server
-
Run the development server
npm run start:dev
-
Run production server
npm start
-
-
Project server is running at:
- The server will run at http://localhost:3000
- Fork it ( https://github.com/vishalnagda1/node-express-multer/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new pull request.