cmdpiped
is a command-line tool for exposing a wrapped cli program's standard IO to WebSockets/SSE
Ready to use Binaries are available at the releases page.
For Rust users, you can always use cargo
cargo install cmdpiped
```
USAGE:
cmdpiped [OPTIONS] --mode
OPTIONS:
-h, --host
You can also use piping
$ node ./index.js | cmdpiped -m sse
cmdpiped
is language agnostic and should be able to plugin easily for anything that can run on the command line.
Python
```py from sys import stdout from time import sleep
for count in range(0, 100): print(count + 1) stdout.flush() sleep(1) ```
Save the file as counter.py
and run the cmdpiped
$ cmdpiped -m sse python3 ./counter.py
Node.js
```js let count = 0;
setInterval(() => { console.log(count++); }, 1000); ```
Save the file as index.js
and run the cmdpiped
$ cmdpiped -m sse node ./index.js
Bash
```sh
for ((COUNT = 1; COUNT <= 100; COUNT++)); do echo $COUNT sleep 1 done ```
Save the file as script.sh
and run the cmdpiped
$ chmod +x ./script.sh
$ cmdpiped -m sse ./script.sh
You should be able to get:
[2022-07-24T13:41:11Z TRACE actix_server::worker] Service "actix-web-service-127.0.0.1:9000" is available
[2022-07-24T13:41:11Z TRACE cmdpiped::broadcaster] Send: "data: 1\n\n"
[2022-07-24T13:41:11Z TRACE cmdpiped::broadcaster] Send: "data: 2\n\n"
[2022-07-24T13:41:12Z TRACE cmdpiped::broadcaster] Send: "data: 3\n\n"
[2022-07-24T13:41:13Z TRACE cmdpiped::broadcaster] Send: "data: 4\n\n"
...
Using the above example, we can add some frontend code
static
.index.html
file:html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var source = new EventSource("http://localhost:9000/events");
source.onmessage = function (event) {
var content = document.getElementById("content");
content.innerHTML = content.innerHTML + event.data + "<br/>";
};
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>
Run cmdpiped
exposing a directory
$ cmdpiped -m sse --serve ./static
A complete example is available in the examples
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details