Skip to content

Instantly share code, notes, and snippets.

@sujith1919
sujith1919 / upload_demo_html.html
Created February 1, 2018 13:16 — forked from paambaati/upload_demo_html.html
Uploading files using NodeJS and Express 4
<html>
<body>
<form action="/upload" enctype="multipart/form-data" method="post">
<input type="text" name="title">
<input type="file" name="file">
<input type="submit" value="Upload">
</form>
</body>
</html>