skapi-js 0.1.52 → 0.1.54

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 CHANGED
@@ -1,26 +1,15 @@
1
1
  # skapi
2
2
 
3
- Serverless-based backend API service designed to simplify your application's security and database management.
4
-
3
+ Serverless-based backend API service designed to simplify the web development.
5
4
 
6
5
  ## For HTML projects
7
6
 
8
- To import skapi into an HTML project, add the following script to the head tag of your HTML file:
9
-
10
7
  ```html
11
8
  <!DOCTYPE html>
12
- <html>
13
- <head>
14
- <script src="https://cdn.jsdelivr.net/npm/skapi-js@latest/dist/skapi.js"></script>
15
- ...
16
- </head>
17
- <body>
18
- ...
19
- </body>
9
+ <script src="https://cdn.jsdelivr.net/npm/skapi-js@latest/dist/skapi.js"></script>
20
10
  <script>
21
11
  const skapi = new Skapi('your_service_id', 'your_user_id');
22
12
  </script>
23
- </html>
24
13
  ```
25
14
 
26
15
  ## For webpack projects