skapi-js 0.1.25 → 0.1.27
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 -25
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# skapi
|
|
2
2
|
|
|
3
|
-
skapi is a backend
|
|
3
|
+
skapi is a serverless backend API for JAM stack developers.
|
|
4
4
|
|
|
5
5
|
Build fast and scalable web services based on skapi's serverless technology.
|
|
6
6
|
|
|
@@ -15,37 +15,17 @@ skapi is built to work well on both plain HTML and Webpack projects.
|
|
|
15
15
|
- Authentication for web services.
|
|
16
16
|
- Cloud storage.
|
|
17
17
|
- E-Mail newsletters to customers.
|
|
18
|
+
- Web hosting.
|
|
18
19
|
|
|
19
20
|
<br>
|
|
20
21
|
|
|
21
22
|
# Getting started
|
|
22
23
|
|
|
23
|
-
For webpack running projects:
|
|
24
|
-
```
|
|
25
|
-
$ npm i skapi-js
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
<br>
|
|
29
|
-
|
|
30
|
-
```
|
|
31
|
-
import {Skapi} from 'skapi-js';
|
|
32
|
-
let skapi = new Skapi('your_service_id', 'your_user_id');
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
For HTML projects:
|
|
36
24
|
```
|
|
37
25
|
<head>
|
|
38
|
-
<script src="https://
|
|
26
|
+
<script src="https://cdn.jsdelivr.net/npm/skapi-js@latest/dist/skapi.js">
|
|
39
27
|
</head>
|
|
40
28
|
<script>
|
|
41
|
-
|
|
29
|
+
const skapi = new Skapi('your_service_id', 'your_user_id');
|
|
42
30
|
</script>
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
<br>
|
|
46
|
-
|
|
47
|
-
# Notice
|
|
48
|
-
|
|
49
|
-
We have just released an alpha!
|
|
50
|
-
|
|
51
|
-
Check out our website: https://skapi.com
|
|
31
|
+
```
|