skapi-js 0.0.82 → 0.0.84
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 +5 -3
- package/dist/skapi.js +1 -1
- package/dist/skapi.js.map +1 -1
- package/dist/skapi.module.js +1 -1
- package/dist/skapi.module.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
skapi is a backend framework for frontend developers.
|
|
4
4
|
|
|
5
|
-
Build fast and scalable web services based on serverless technology.
|
|
5
|
+
Build fast and scalable web services based on skapi's serverless technology.
|
|
6
6
|
|
|
7
7
|
skapi is built to work well on both plain HTML and Webpack projects.
|
|
8
8
|
|
|
9
|
-
100% Serverless.
|
|
9
|
+
100% Serverless. No maintenance or CLI installation is required.
|
|
10
10
|
|
|
11
11
|
<br>
|
|
12
12
|
|
|
@@ -25,6 +25,8 @@ For webpack running projects:
|
|
|
25
25
|
$ npm i skapi-js
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
<br>
|
|
29
|
+
|
|
28
30
|
```
|
|
29
31
|
import {Skapi} from 'skapi-js';
|
|
30
32
|
let skapi = new Skapi('your_service_id', 'your_user_id');
|
|
@@ -33,7 +35,7 @@ let skapi = new Skapi('your_service_id', 'your_user_id');
|
|
|
33
35
|
For HTML projects:
|
|
34
36
|
```
|
|
35
37
|
<head>
|
|
36
|
-
<script src="https://broadwayinc.dev/jslib/skapi/
|
|
38
|
+
<script src="https://broadwayinc.dev/jslib/skapi/latest/skapi.js">
|
|
37
39
|
</head>
|
|
38
40
|
<script>
|
|
39
41
|
let skapi = new Skapi('your_service_id', 'your_user_id');
|