Forestnode Io Oneshot Save

A first-come first-served single-fire HTTP server. Easily transfer files to and from your terminal and any browser.

Project README

oneshot v2

A single-fire first-come-first-serve HTTP server.

Features

  • Send and receive to and from stdin or stdout.
  • Use external executables to process and respond to HTTP requests.
  • Reverse proxy and redirect HTTP requests.
  • Multiple methods of NAT traversal: UPnP-IGD, STUN and TURN (ICE).
  • Support for cloud integration with built in discovery / signalling server to allow for self hosted instances.
  • Works with any HTTP client including browsers, only one person needs to have oneshot installed.
  • Support for rich, machine-readable output; easily integrate oneshot into your pipelines.
  • Highly configurable HTTP responses, custom upload clients, and more.

A video overview of oneshot (v1) (thanks to Brodie Robertson)

Installation

There are multiple ways of obtaining oneshot:

Download binary (easiest)

curl -L https://github.com/forestnode-io/oneshot/raw/v2/v2/install.sh | sudo sh

Linux / macOS

Copy and paste any of these commands into your terminal to install oneshot. For some portion of Linux users, there are .deb and .rpm packages available in the release page.

Brew
brew tap oneshot-uno/homebrew-tap
brew install oneshot-uno/homebrew-tap/oneshot
Go get
go get -u -v github.com/forestnode-io/oneshot/v2
Compiling from source
git clone https://github.com/forestnode-io/oneshot
cd oneshot/v2
sudo make install

Windows

Download executable

Head over to the release page and download the windows .zip file.

Go get
go get -u -v github.com/forestnode-io/oneshot/v2

Use Cases & Examples

Send a file

$ oneshot send path/to/file.txt

Then, from a browser (or any HTTP client) simply go to your computers I.P. address and the file download will be triggered.

Send a file securely

$ oneshot send -u username -W path/to/file.txt

The -W option will cause oneshot to prompt you for a password. Oneshot also supports HTTPS, simply pass in the key and certificate using the --tls-key and --tls-cert flags.

Receive a file

$ oneshot receive .

The receive subcommand is used for receiving data from the client. A connecting browser will be prompted to upload a file which oneshot then save to the current directory.

Receive a file to standard out

$ oneshot receive | jq '.first_name'

If the receive subcommand is used and no directory is given, oneshot will write the received file to its standard out.

Serve up a first-come-first-serve web page

$ oneshot send -D my/web/page.html

The -D flag tells oneshot to not trigger a download client-side.

Send the results of a lengthy process

$ sudo apt update | oneshot send -n apt-update.txt

Oneshot can transfer from its standard input; by default files are given a random name. The optional flag -n sets the name of the file.

Wait until someone provides credentials to start a process, then send its output

$ oneshot send -u foo -P password -c my_non-cgi_script.sh

Oneshot can run your scripts and programs in a CGI flexible CGI environment. Even non-CGI executables may be used; oneshot will provide its own default headers or you can set your own using the -H flag.

Create a single-fire api in a single line

$ oneshot exec -- 'echo "Hello $(jq -r '.name')!"'

Here, the exec subcommand tells oneshot to run its input as a shell command in a flexible CGI environment.

In another terminal we can test our api:

$ curl -X POST -H 'Content-Type: application/json' -d '{"name": "world"}' localhost:8080
Hello World!

Receive a file, do work on it locally and send back the results

$ oneshot -u | gofmt | oneshot -J

The -J flag we are using here tells oneshot to only start serving HTTP once it has received an EOF from its stdin. This allows us to create unix pipelines without needing to specify a different port for each instance of oneshot. In this scenario, the user would upload or type in some Go code and upon hitting the back button (refresh won't work !) or going back to the original URL, the user will receive their formatted Go code.

Reporting Bugs, Feature Requests & Contributing

Please report any bugs or issues here.

I consider oneshot to be nearly feature complete; feature requests and contributions are welcome.

Open Source Agenda is not affiliated with "Forestnode Io Oneshot" Project. README Source: forestnode-io/oneshot
Stars
328
Open Issues
3
Last Commit
5 months ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating