Node
Location in archive:serverside/node/
The server-side of Node.js is shipped as a microservice. Here is how you can install it:
- Unpack to the server directory.
- Configure the server: add to
config.json
your ownhost
andport
. Insert any server-side parameters to this file as well. - Start the server with
node uploader.js
, when you are in the server directory.
Now your server is running and serves the specified address. By default it is http://localhost:7777/uploader
.
The client part of File Uploader uses the urlUploader
variable to access the server.
Now, you goal is to configure the main server so, that it requested the uploader microservice while serving this URL. Some methods to configure that can be found in this article: Cross-platform installation.