Gurenax / node-express-fileupload

πŸ—‚ A simple file uploader using express-fileupload.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node Express File Upload

A simple file uploader using express-fileupload.

Routes

POST /upload

  • Handles a file upload form
  • Example html:
<html>
  <body>
    <form ref='uploadForm' 
      id='uploadForm' 
      action='http://localhost:7000/upload' 
      method='post' 
      encType="multipart/form-data">
        <input type="file" name="csvFile" />
        <input type='submit' value='Upload!' />
    </form>     
  </body>
</html>

References

Express File Upload

Serving static files in Express

About

πŸ—‚ A simple file uploader using express-fileupload.


Languages

Language:JavaScript 84.2%Language:HTML 15.8%