Using React.js, C++ and MongoDB, this application allows files to be hosted and transferred over local networks.
with docker-compose installed, simply do
docker-compose up
the website will be accessible at http://localhost:3000
.
Using React, this website allows users to upload, download
and view stored files from within a local network. See
website/
for all website code.
This handles requests from the React client to fetch files and their
metadata. The API Gateway is be written in Node and splits HTTP requests
between the two backend services. See
api-gateway/
for API Gateway code.
The File Logging Service stores any associated information about uploaded
files such as size, upload date, name, etc. We can use the data stored
here for analytics and looking up files. See
logging-service/
for File Logging Service code.
Written in C++, this service reads and writes bytestreams to storage. Using
@meltwater's
served
library,
listens for incoming HTTP requests from the API Gateway. See
file-service/
for File Storing Service code.