blob: 59a7ad8df29c4585271c0b6a77fcafe4d4aace55 (
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/python > ~/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="_page/quescripts">See the examples</a>
|