Skip to content

Latest commit

 

History

History
75 lines (47 loc) · 2.19 KB

README.md

File metadata and controls

75 lines (47 loc) · 2.19 KB

Node Express Multer

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.

Requirements

Prerequisites

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.

Installation

Lastly, make sure you have the following installed.

Getting Started

  1. 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 git@github.com:vishalnagda1/node-express-multer.git
    • Download Zip

  2. Navigate to project directory in the terminal or command prompt.

    cd node-express-multer
  3. Install project dependencies

    npm install
  4. Run the project server

    • Run the development server

      npm run start:dev
    • Run production server

      npm start
  5. Project server is running at:

Contributing

  1. Fork it ( https://github.com/vishalnagda1/node-express-multer/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new pull request.