skapi-js 1.0.159 → 1.0.161

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,7 +1,7 @@
1
1
  # Skapi
2
2
 
3
- Skapi is a backend API Library for HTML Frontend.
4
- Now you can build fullstack web applications directly from your HTML frontend without the need for a backend server deployment.
3
+ Serverless backend API Library for HTML Frontend.
4
+ Build fullstack web applications directly from your HTML without backend engineering.
5
5
 
6
6
  ### Compatible with both vanilla HTML and SPA projects
7
7
 
@@ -65,9 +65,8 @@ Then, import the library into your main JavaScript file.
65
65
  import { Skapi } from 'skapi-js';
66
66
  const skapi = new Skapi('service_id', 'owner_id');
67
67
 
68
+ // Export the skapi instance, so you can use it in other components
68
69
  export { skapi }
69
-
70
- // Now you can import skapi from anywhere in your project.
71
70
  ```
72
71
 
73
72
  ### 3. Test your connection