@rescript/webapi 0.1.0-experimental-32f15eb → 0.1.0-experimental-bef77c9
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 +24 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
1
|
+
[](https://www.npmjs.com/package/@rescript/webapi)
|
|
2
|
+
|
|
1
3
|
# experimental-rescript-webapi
|
|
4
|
+
|
|
2
5
|
Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)
|
|
3
6
|
|
|
4
|
-
##
|
|
7
|
+
## Getting started
|
|
8
|
+
|
|
9
|
+
Install the package using your favorite package manager:
|
|
10
|
+
|
|
11
|
+
```shell
|
|
12
|
+
npm i -D @rescript/webapi@experimental
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
and add `@rescript/webapi` to your `rescript.json`:
|
|
5
16
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"bs-dependencies": [
|
|
20
|
+
+ "@rescript/webapi",
|
|
21
|
+
],
|
|
22
|
+
"bsc-flags": [
|
|
23
|
+
+ "-open Global"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
```
|
|
11
27
|
|
|
12
|
-
##
|
|
28
|
+
## Documentation
|
|
13
29
|
|
|
14
|
-
|
|
30
|
+
More information can be found on https://rescript-lang.github.io/experimental-rescript-webapi/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rescript/webapi",
|
|
3
|
-
"version": "0.1.0-experimental-
|
|
3
|
+
"version": "0.1.0-experimental-bef77c9",
|
|
4
4
|
"description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
|
|
5
5
|
"homepage": "https://github.com/rescript-lang/experimental-rescript-webapi",
|
|
6
6
|
"bugs": "https://github.com/rescript-lang/experimental-rescript-webapi/issues",
|