blob: ca5c7ef99827e94ce0b91a5a03e08e66658fe7e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
% que.run
que is the concurrent, async runtime in the cloud
- runtime concurrency anywhere you have a network connection
- multilanguage communicating sequential processes
- add Go-like channels to any language
- connect your microservices together with the simplest possible
plumbing
- async programming as easy as running two terminal commands
HTTP routes on que.run are Golang-like channels with a namespace and a
path. For example: `https://que.run/example/path/subpath`.
## Quickstart
There is a simple script `que` that acts as a client you can use to
interact with the `que.run` service.
Download it to somewhere on your `$PATH` and make it executable:
curl https://que.run/_/client > ~/bin/que
chmod +x ~/bin/que
que --help
The client requires a recent version of Python 3.
## Quescripts
We are collecting a repository of scripts that make awesome use of que:
- remote desktop notifications
- two-way communication with your phone
- ephemeral, serverless chat rooms
- collaborative jukebox
<a id="quescripts-btn" href="/_/quescripts">See the examples</a>
|