This repository was archived by the owner on Mar 17, 2025. It is now read-only.
This repository was archived by the owner on Mar 17, 2025. It is now read-only.
add yun backend #129
Open
Description
We should add a yun backend that fire the curl CLI over the Yun Bridge Library.
streaming could be achieved with:
Bridge.begin();
p.begin("curl");
p.addParameter("--no-buffer");
p.addParameter("-L");
p.addParameter("-k");
p.addParameter("-H");
p.addParameter("Accept: text/event-stream");
p.addParameter("https://example.firebaseio.com/.json");
p.runAsynchronously();
/courtesy of @aliafshar