@anterior/brrr 0.1.242 → 0.1.243
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -109,7 +109,7 @@ $ nix run github:anteriorai/brrr#demo
|
|
|
109
109
|
In the process list, select the worker process so you can see its output. Now in another terminal:
|
|
110
110
|
|
|
111
111
|
```
|
|
112
|
-
$ curl 'http://localhost:
|
|
112
|
+
$ curl -X POST 'http://localhost:8080/hello?greetee=John'
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
You should see the worker print a greeting.
|
|
@@ -117,7 +117,7 @@ You should see the worker print a greeting.
|
|
|
117
117
|
You can also run a Fibonacci job:
|
|
118
118
|
|
|
119
119
|
```
|
|
120
|
-
$ curl 'http://localhost:
|
|
120
|
+
$ curl -X POST 'http://localhost:8080/calc_and_print?op=fib&n=11'
|
|
121
121
|
```
|
|
122
122
|
|
|
123
123
|
## Implementation and Trade-Offs
|