I have followed these directions:
You can install Node.js sample to your server via npm. npm install blueimp-file-upload-node
Start service: ./node_modules/blueimp-file-upload-node/server.js
Download plugin, unzip it, edit index.html and point form action to your Node.js (i.e. to
http://localhost:8080
). You can also upload project files to any other server and use it as a UI to upload files to Node.js server.
When I navigate to local host 8888, I get a file array: {"files":[]}
. Local host 8080 doesn't connect.
This is the form action on the index page:
<form id="fileupload" action="//localhost:8888" method="POST" enctype="multipart/form-data">
I'n new with node and application development. Any help would be really appreciated. Thanks.