https://github.com/navaz-alani/nimbus
A configurable HTTP file upload/download server implementation in Golang.
https://github.com/navaz-alani/nimbus
fileserver golang http
Last synced: 5 months ago
JSON representation
A configurable HTTP file upload/download server implementation in Golang.
- Host: GitHub
- URL: https://github.com/navaz-alani/nimbus
- Owner: navaz-alani
- License: mit
- Created: 2020-11-11T06:53:03.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-17T08:35:28.000Z (over 5 years ago)
- Last Synced: 2024-06-20T00:42:42.447Z (almost 2 years ago)
- Topics: fileserver, golang, http
- Language: Go
- Homepage: https://pkg.go.dev/github.com/navaz-alani/nimbus
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nimbus
[](https://pkg.go.dev/github.com/navaz-alani/nimbus)
This is a simple fileserver, written in Go, which facilitates uploading and
downloading of files. For examples of how this software works, check out the
`examples` directory in the project root.
## Implementation Details
There is an interface type `NimbusHTTP` which defines the HTTP interface of the
file server. There is currently one implementation of this:
* `NimbusHTTPFormImpl` is the implementation which attempts to download a file
from the user and save it to the server, through a request with type
`multipart/form-data`. The server returns a string representing the server
name for the uploaded file. Using this name as a query parameter (with the key
as a configurable value), the user can then download the uploaded files.