Skapi is a zero-setup backend API that runs entirely serverless. Build full-featured web applications faster with Skapi - No complex installations, No server configurations, No database management required.
No fancy framework or complex deployment required. Just focused on the basics, Skapi is a single JavaScript library fully compatible with vanilla HTML, as well as any JS frameworks.
Skapi provides all the backend features you need for your web application out of the box, without the need to set up or maintain any backend servers.
- Authentication
- Database
- File Storage
- Realtime websocket messaging
- WebRTC media streaming
- Notification
- CDN
- Automated Email Systems
- API Bridge for 3rd party APIs
- File Hosting
- Signup for an account at skapi.com.
- Log in and create a new service from the My Services page.
Skapi is compatible with both vanilla HTML and webpack-based projects (ex. Vue, React, Angular... etc). You need to import the library using the <script> tag or install via npm.
For vanilla HTML projects, import Skapi in the script tag, and initialize the library.
Be sure to replace 'service_id' and 'owner_id' with the actual values of your service
For more information, check out our documentation.
To use Skapi in a SPA projects (such as Vue, React, or Angular), you can install skapi-js via npm.
Then, import the library into your main JavaScript file.
After you initialized the Skapi library, you can test your connection by pinging your request with the mock() method.
Below is an example of how you can use the mock() method in HTML forms.
This will send a request to your Skapi service and ping back the response. When the request is resolved, the mock() method will return the response data as a Promise object. The response data will be displayed in an alert box.